Phaser.Math.Easing.Sine

Scope: static

Source: src/math/easing/sine/index.js#L7

Static functions

In

<static> In(v)

Description:

Sinusoidal ease-in.

Parameters:

name

type

optional

description

v

number

No

The value to be tweened.

Returns: number - The tweened value.

Source: src/math/easing/sine/In.js#L7
Since: 3.0.0


InOut

<static> InOut(v)

Description:

Sinusoidal ease-in/out.

Parameters:

name

type

optional

description

v

number

No

The value to be tweened.

Returns: number - The tweened value.

Source: src/math/easing/sine/InOut.js#L7
Since: 3.0.0


Out

<static> Out(v)

Description:

Sinusoidal ease-out.

Parameters:

name

type

optional

description

v

number

No

The value to be tweened.

Returns: number - The tweened value.

Source: src/math/easing/sine/Out.js#L7
Since: 3.0.0


Updated on