Question

So I'm new to the FlashPunk library, and don't know how to tween an Entity? So for example how do you animate an entity's x value from the World's class?

Was it helpful?

Solution

You can use Tweens, such as the VarTween which can modify an object (or Entities) property.

For example, something like this would work;

var tween:VarTween = new VarTween();
tween.tween(MY_ENTITY,"x",500,2);

This would tween MY_ENTITY's x value to 500 pixels in 2 seconds.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top