You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/tweens/typedefs/NumberTweenBuilderConfig.js
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,9 @@
31
31
* @property {Phaser.Types.Tweens.TweenOnStartCallback} [onStart] - A function to call when the tween starts.
32
32
* @property {array} [onStartParams] - Additional parameters to pass to `onStart`.
33
33
* @property {any} [onStartScope] - Scope (this) for `onStart`.
34
+
* @property {Phaser.Types.Tweens.TweenOnStopCallback} [onStop] - A function to call when the tween is stopped.
35
+
* @property {array} [onStopParams] - Additional parameters to pass to `onStop`.
36
+
* @property {any} [onStopScope] - Scope (this) for `onStop`.
34
37
* @property {Phaser.Types.Tweens.TweenOnUpdateCallback} [onUpdate] - A function to call each time the tween steps. Called once per property per target.
35
38
* @property {array} [onUpdateParams] - Additional parameters to pass to `onUpdate`.
36
39
* @property {any} [onUpdateScope] - Scope (this) for `onUpdate`.
Copy file name to clipboardExpand all lines: src/tweens/typedefs/TweenBuilderConfig.js
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,9 @@
33
33
* @property {Phaser.Types.Tweens.TweenOnStartCallback} [onStart] - A function to call when the tween starts playback, after any delays have expired.
34
34
* @property {array} [onStartParams] - Additional parameters to pass to `onStart`.
35
35
* @property {any} [onStartScope] - Scope (this) for `onStart`.
36
+
* @property {Phaser.Types.Tweens.TweenOnStopCallback} [onStop] - A function to call when the tween is stopped.
37
+
* @property {array} [onStopParams] - Additional parameters to pass to `onStop`.
38
+
* @property {any} [onStopScope] - Scope (this) for `onStop`.
36
39
* @property {Phaser.Types.Tweens.TweenOnUpdateCallback} [onUpdate] - A function to call each time the tween steps. Called once per property per target.
37
40
* @property {array} [onUpdateParams] - Additional parameters to pass to `onUpdate`.
38
41
* @property {any} [onUpdateScope] - Scope (this) for `onUpdate`.
0 commit comments