ActionScript-3 在每一帧上调用函数,而无需对中间的每一帧设置关键帧
我想在关键帧 1 和关键帧 60 之间每帧调用一次函数,但我不想在调用函数的操作之间的每个帧上创建一个关键帧。有没有像补间这样的简单方法,可以使该函数在每一帧上执行一次,而不必创建 60 个唯一的关键帧?
I want to call a function once per frame between keyframe 1 and keyframe 60, but i don't want to have to create a keyframe on EVERY single frame in between with an action calling the function. is there a simple way like tweening, to make this function execute once on every frame without having to make 60 unique keyframes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
保留计数变量并使用
ENTER_FRAME
事件。像这样的东西:Keep a count variable and use the
ENTER_FRAME
event. Something like: