ActionScript - 来自 Tweener 的跟踪更新值
tweener 在补间传递参数时不会更新 myValue。为什么?
public var myValue:Number = 0.0;
Tweener.addTween(this, {myValue: 1.0, time: 2.0, onUpdate: traceValue, onUpdateParams: [myValue]});
private function traceValue(value:Number):void
{
trace(value);
}
tweener doesn't update myValue while passing the param while tweening. why?
public var myValue:Number = 0.0;
Tweener.addTween(this, {myValue: 1.0, time: 2.0, onUpdate: traceValue, onUpdateParams: [myValue]});
private function traceValue(value:Number):void
{
trace(value);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 ActionScript 中,原始值始终按值传递,而不是按引用传递。 Tweener 正在更新您的值,但传递给traceValue 的始终是原始值。因此,在上面的代码中,它总是会跟踪出 0。解决方案是传入对目标对象的引用,并每次读取该值。如果您传入字段名称,则可以动态完成此操作以获得最大的灵活性。例如:
Primitive values are always passed by value in ActionScript, never by reference. Tweener is updating your value, but what gets passed to traceValue is always the original value. So in your code above it'll always trace out 0. The solution is to pass in a reference to the target object instead, and read the value each time. If you pass in the field name this can be done dynamically for the most flexibility. Eg: