as3 相对于当前位置的补间位置
我在计时器上设置了补间:
var manTimer:Timer = new Timer(1000,14);
manTimer.addEventListener(TimerEvent.TIMER, moveMan);
function moveMan(e:TimerEvent):void {
var manX:Tween = new Tween(man, "x", Regular.easeOut, 0, -40, 1, true);
}
我只需要使补间的位置相对于其当前位置,而不是从舞台的 0 位置开始,然后移动舞台的 -40 位置。它需要从当前位置开始,从该位置移动 -40。
谢谢, 韦德
I have a tween set on a timer:
var manTimer:Timer = new Timer(1000,14);
manTimer.addEventListener(TimerEvent.TIMER, moveMan);
function moveMan(e:TimerEvent):void {
var manX:Tween = new Tween(man, "x", Regular.easeOut, 0, -40, 1, true);
}
I just need to make the tween's position relative to it's current position, as opposed to starting at the stage's 0 position then moving the the stage's -40 position. It needs to start at its current position the move -40 from that position.
Thanks,
Wade
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
var manX:Tween = new Tween(man, "x", Regular.easeOut, man.x, man.x - 40, 1, true);
var manX:Tween = new Tween(man, "x", Regular.easeOut, man.x, man.x - 40, 1, true);