Tagged Questions
1
vote
1answer
34 views
LibGDX - Does modifying a Group affects children?
I wonder if there is a way to affect Actors children when their parent Group is modified ? Like they were attached to him. By modifying I mean doing some conventional actions like translation, ...
0
votes
1answer
39 views
touch isn't detecting on libgdx button
I'm new to libgdx and learning libgdx scene2d.
In menu screen constructor I had created a stage with the device's resolution
and added stage to input processor:
stage = new Stage(800, 480, false);
...
1
vote
2answers
146 views
android libgdx shoot with the Actor
I can't shoot with my Actor. When I hold the shooting button there is the bullet in front of my Actor, but it doesn't move. I don't know how to become it moving like the meteorites...
public class ...
0
votes
1answer
116 views
Can I add an actor to the back layer in Libgdx?
I am making a game in Libgdx and I have a little problem. I have a number of actors that show up on the screen dynamically. If there is an Image actor that shows up after the first, could I send it to ...
4
votes
2answers
782 views
libgdx difference between sprite and actor
I'm just going through the javadoc and various tutorials on libgdx and I'm at the stage of trying to figure out differences between various concepts that seem similar to me or provide similar ...
2
votes
2answers
262 views
libgdx 0.9.7 actor hit doesn't receive actor system coordinates
In my stage I have several actors added. I have Input Processor set for actors as well as for the stage itself.
The problem is that, when I tap on the actor the hit method of the actor receives ...
2
votes
1answer
735 views
libgdx touchUp event
I'm using an actors with a stage as buttons. I can detect when touchDown/touchUp events occur just fine over the actor, but when the user taps on the actor and then proceeds to drag their finger off ...
7
votes
1answer
3k views
When to use actors in libgdx? What are cons and pros?
I'm writing simple solar system simulator.
This is my first libgdx project. I'm using a Stage and Actors for the main menu and is pretty handy especially touch events handling. But ... looking at the ...
0
votes
1answer
632 views
Is there a method that checks if an libgdx Scene2d Image or Actor is touched?
here's my sample from the libgdx android game that I want to create. Nothing special yet, cause I'm just starting my adventure with Android games.
Here is a couple of questions I would like to get ...
8
votes
2answers
8k views
Actions of Actors in libgdx
I have made my Actor, but I am unclear on how to take advantage of the action and act methods. Outside of the basic Javadoc, I have not found a good tutorials on these methods.
Can anyone provide an ...