Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我是 FlashPunk 库的新手,不知道如何补间实体?例如,您如何为 World 类中的实体 x 值设置动画?
您可以使用补间,例如可以修改对象(或实体)属性的 VarTween。
例如,这样的事情会起作用;
var tween:VarTween = new VarTween(); tween.tween(MY_ENTITY,"x",500,2);
这将在 2 秒内将 MY_ENTITY 的 x 值补间到 500 像素。