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 go
Here is a useful link for the uses of Class com.badlogic.gdx.math.Interpolation. So for example, to create a moveTo ation with an effect you could simply use:
myActor.addAction(Actions.moveTo(100, 200, 0.7f, Interpolation.bounceOut));
If you set your Actions class import as static (you have to set it manually):
import static com.badlogic.gdx.scenes.scene2d.actions.Actions.*;
then, you can use your actions like this:
myActor.addAction(moveTo(100, 200, 0.7f, Interpolation.bounceOut));