Ellipse#clone()

clone(output) → {Phaser.Ellipse} Returns a new Ellipse object with the same values for the x, y, width, and height properties as this Ellipse object. Parameters Name Type Description output Phaser.Ellipse Optional Ellipse object. If given the values will be set into the object, otherwise a brand new Ellipse object will be created and returned. Returns Phaser.Ellipse - The cloned Ellipse object. Source code: geom/Ellipse.js (Line 117)

Ellipse#bottom

bottom : number The sum of the y and height properties. Changing the bottom property of an Ellipse doesn't adjust the y property, but does change the height. Gets or sets the bottom of the ellipse. Source code: geom/Ellipse.js (Line 251)

Easing.Sinusoidal#Sinusoidal

new Sinusoidal() Sinusoidal easing. Source code: tween/Easing.js (Line 239)

Easing.Sinusoidal#Out()

Out(k) → {number} Sinusoidal ease-out. Parameters Name Type Description k number The value to be tweened. Returns number - The tweened value. Source code: tween/Easing.js (Line 256)

Easing.Sinusoidal#InOut()

InOut(k) → {number} Sinusoidal ease-in/out. Parameters Name Type Description k number The value to be tweened. Returns number - The tweened value. Source code: tween/Easing.js (Line 271)

Easing.Sinusoidal#In()

In(k) → {number} Sinusoidal ease-in. Parameters Name Type Description k number The value to be tweened. Returns number - The tweened value. Source code: tween/Easing.js (Line 241)

Easing.Quintic#Quintic

new Quintic() Quintic easing. Source code: tween/Easing.js (Line 190)

Easing.Quintic#Out()

Out(k) → {number} Quintic ease-out. Parameters Name Type Description k number The value to be tweened. Returns number - The tweened value. Source code: tween/Easing.js (Line 205)

Easing.Quintic#InOut()

InOut(k) → {number} Quintic ease-in/out. Parameters Name Type Description k number The value to be tweened. Returns number - The tweened value. Source code: tween/Easing.js (Line 218)

Easing.Quintic#In()

In(k) → {number} Quintic ease-in. Parameters Name Type Description k number The value to be tweened. Returns number - The tweened value. Source code: tween/Easing.js (Line 192)