We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffa50f2 commit 294b110Copy full SHA for 294b110
1 file changed
v3/src/animation/frame/Animation.js
@@ -70,6 +70,8 @@ var Animation = function (manager, key, config)
70
this.onRepeat = GetObjectValue(config, 'onRepeat', false);
71
this.onRepeatParams = GetObjectValue(config, 'onRepeatParams', []);
72
73
+ // Called for EVERY frame of the animation.
74
+ // See AnimationFrame.onUpdate for a frame specific callback.
75
this.onUpdate = GetObjectValue(config, 'onUpdate', false);
76
this.onUpdateParams = GetObjectValue(config, 'onUpdateParams', []);
77
0 commit comments