Phaser API Documentation

  Version: 
Filter
Namespace: Alpha
Phaser.GameObjects.Components.Alpha

Members

<private> _alpha: number
Focus
Focus

Description:

Private internal value. Holds the global alpha value.

Type:
number
Default: 1
Since: 3.0.0
Focus
Focus
<private> _alphaBL: number
Focus
Focus

Description:

Private internal value. Holds the bottom-left alpha value.

Type:
number
Default: 1
Since: 3.0.0
Focus
Focus
<private> _alphaBR: number
Focus
Focus

Description:

Private internal value. Holds the bottom-right alpha value.

Type:
number
Default: 1
Since: 3.0.0
Focus
Focus
<private> _alphaTL: number
Focus
Focus

Description:

Private internal value. Holds the top-left alpha value.

Type:
number
Default: 1
Since: 3.0.0
Focus
Focus
<private> _alphaTR: number
Focus
Focus

Description:

Private internal value. Holds the top-right alpha value.

Type:
number
Default: 1
Since: 3.0.0
Focus
Focus
alpha: number
Focus
Focus

Description:

The alpha value of the Game Object.

This is a global value, impacting the entire Game Object, not just a region of it.

Type:
number
Since: 3.0.0
Focus
Focus
Only webGL alphaBottomLeft: number
Focus
Focus

Description:

The alpha value starting from the bottom-left of the Game Object. This value is interpolated from the corner to the center of the Game Object.

Type:
number
Since: 3.0.0
Focus
Focus
Only webGL alphaBottomRight: number
Focus
Focus

Description:

The alpha value starting from the bottom-right of the Game Object. This value is interpolated from the corner to the center of the Game Object.

Type:
number
Since: 3.0.0
Focus
Focus
Only webGL alphaTopLeft: number
Focus
Focus

Description:

The alpha value starting from the top-left of the Game Object. This value is interpolated from the corner to the center of the Game Object.

Type:
number
Since: 3.0.0
Focus
Focus
Only webGL alphaTopRight: number
Focus
Focus

Description:

The alpha value starting from the top-right of the Game Object. This value is interpolated from the corner to the center of the Game Object.

Type:
number
Since: 3.0.0
Focus
Focus

Methods

clearAlpha()
Focus
Focus

Description:

Clears all alpha values associated with this Game Object.

Immediately sets the alpha levels back to 1 (fully opaque).

Returns:
Description:

This Game Object instance.

Since: 3.0.0
Focus
Focus
setAlpha([topLeft], [topRight], [bottomLeft], [bottomRight])
Focus
Focus

Description:

Set the Alpha level of this Game Object. The alpha controls the opacity of the Game Object as it renders. Alpha values are provided as a float between 0, fully transparent, and 1, fully opaque.

If your game is running under WebGL you can optionally specify four different alpha values, each of which correspond to the four corners of the Game Object. Under Canvas only the topLeft value given is used.

Parameters:

name type arguments Default description
topLeft number <optional> 1

The alpha value used for the top-left of the Game Object. If this is the only value given it's applied across the whole Game Object.

topRight number <optional>

The alpha value used for the top-right of the Game Object. WebGL only.

bottomLeft number <optional>

The alpha value used for the bottom-left of the Game Object. WebGL only.

bottomRight number <optional>

The alpha value used for the bottom-right of the Game Object. WebGL only.

Returns:
Description:

This Game Object instance.

Since: 3.0.0
Focus
Focus