Namespace: Sine

Phaser.Math.Easing. Sine

Methods


<static> In(v)

Sinusoidal ease-in.

Parameters:
Name Type Description
v number

The value to be tweened.

Since: 3.0.0
Source: src/math/easing/sine/In.js (Line 7)
Returns:

The tweened value.

Type
number

<static> InOut(v)

Sinusoidal ease-in/out.

Parameters:
Name Type Description
v number

The value to be tweened.

Since: 3.0.0
Source: src/math/easing/sine/InOut.js (Line 7)
Returns:

The tweened value.

Type
number

<static> Out(v)

Sinusoidal ease-out.

Parameters:
Name Type Description
v number

The value to be tweened.

Since: 3.0.0
Source: src/math/easing/sine/Out.js (Line 7)
Returns:

The tweened value.

Type
number