Tween#delay()

delay(duration, index) → {Phaser.Tween} Sets the delay in milliseconds before this tween will start. If there are child tweens it sets the delay before the first child starts.The delay is invoked as soon as you call Tween.start. If the tween is already running this method doesn't do anything for the current active tween.If you have not yet called Tween.to or Tween.from at least once then this method will do nothing, as there are no tweens to delay.If you have child tweens and pass -1 as the i

Tween#current

[readonly] current : number The current Tween child being run. Source code: tween/Tween.js (Line 120)

Tween#chainedTween

chainedTween : Phaser.Tween If this Tween is chained to another this holds a reference to it. Source code: tween/Tween.js (Line 130)

Tween#chain()

chain(tweens) → {Phaser.Tween} This method allows you to chain tweens together. Any tween chained to this tween will have its Tween.start method calledas soon as this tween completes. If this tween never completes (i.e. repeatAll or loop is set) then the chain will never progress.Note that Tween.onComplete will fire when this tween completes, not when the whole chain completes.For that you should listen to onComplete on the final tween in your chain. If you pass multiple tweens to this method

Touch#touchStartCallback

touchStartCallback : Function A callback that can be fired on a touchStart event. Source code: input/Touch.js (Line 47)

Touch#touchMoveCallback

touchMoveCallback : Function A callback that can be fired on a touchMove event. Source code: input/Touch.js (Line 52)

Touch#touchLeaveCallback

touchLeaveCallback : Function A callback that can be fired on a touchLeave event. Source code: input/Touch.js (Line 67)

Touch#touchEnterCallback

touchEnterCallback : Function A callback that can be fired on a touchEnter event. Source code: input/Touch.js (Line 62)

Touch#touchEndCallback

touchEndCallback : Function A callback that can be fired on a touchEnd event. Source code: input/Touch.js (Line 57)

Touch#touchCancelCallback

touchCancelCallback : Function A callback that can be fired on a touchCancel event. Source code: input/Touch.js (Line 72)