Phaser API Documentation

  Version: 
start([direction], [duration], [red], [green], [blue], [force], [callback], [context])

Description:

Fades the Camera to or from the given color over the duration specified.

Parameters:

name type arguments Default description
direction boolean <optional> true

The direction of the fade. true = fade out (transparent to color), false = fade in (color to transparent)

duration number <optional> 1000

The duration of the effect in milliseconds.

red number <optional> 0

The amount to fade the red channel towards. A value between 0 and 255.

green number <optional> 0

The amount to fade the green channel towards. A value between 0 and 255.

blue number <optional> 0

The amount to fade the blue channel towards. A value between 0 and 255.

force boolean <optional> false

Force the effect to start immediately, even if already running.

callback Phaser.Types.Cameras.Scene2D.CameraFadeCallback <optional>

This callback will be invoked every frame for the duration of the effect. It is sent two arguments: A reference to the camera and a progress amount between 0 and 1 indicating how complete the effect is.

context any <optional>

The context in which the callback is invoked. Defaults to the Scene to which the Camera belongs.

Returns:
Description:

The Camera on which the effect was started.

Since: 3.5.0