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?

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top