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
* @return {boolean} True if the tween has a non-null offset.
341
341
*/
342
342
hasOffset: function(tween)
343
343
{
@@ -604,12 +604,14 @@ var Timeline = new Class({
604
604
},
605
605
606
606
/**
607
-
* [description]
607
+
* Updates the Timeline's `state` and fires callbacks and events.
608
608
*
609
609
* @method Phaser.Tweens.Timeline#nextState
610
610
* @fires Phaser.Tweens.Events#TIMELINE_COMPLETE
611
611
* @fires Phaser.Tweens.Events#TIMELINE_LOOP
612
612
* @since 3.0.0
613
+
*
614
+
* @see Phaser.Tweens.Timeline#update
613
615
*/
614
616
nextState: function()
615
617
{
@@ -674,7 +676,7 @@ var Timeline = new Class({
674
676
* @fires Phaser.Tweens.Events#TIMELINE_UPDATE
675
677
* @since 3.0.0
676
678
*
677
-
* @param {number} timestamp - [description]
679
+
* @param {number} timestamp - The current time. Either a High Resolution Timer value if it comes from Request Animation Frame, or Date.now if using SetTimeout.
678
680
* @param {number} delta - The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.
679
681
*
680
682
* @return {boolean} Returns `true` if this Timeline has finished and should be removed from the Tween Manager.
0 commit comments