as3 相对于当前位置的补间位置

发布于 2024-08-19 03:56:34 字数 351 浏览 7 评论 0原文

我在计时器上设置了补间:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱&纷飞 2024-08-26 03:56:34

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);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文