LightsManager
The Lights Manager is responsible for managing all of the Phaser.GameObjects.Light objects in a Scene, as well as the ambient light color that applies to all lit Game Objects.
It is created automatically by the Scene Systems and is accessed via this.lights within a Scene. To use the lighting system, call this.lights.enable() and ensure that any Game Objects you want to be affected by lighting have setLighting(true) applied to them.
The Lights Manager works in conjunction with the Light Filter (WebGL only). Game Objects rendered with this filter sample the active lights and the ambient color, and use any normal maps assigned to their textures to produce a dynamic lighting effect. Lighting has no effect in Canvas rendering.
Each Scene supports a fixed maximum number of simultaneous lights, set via the maxLights property in the game config. When more lights exist than the maximum, the manager culls the furthest lights from the camera each frame. Use Phaser.GameObjects.LightsManager#addLight to create a Light and Phaser.GameObjects.LightsManager#setAmbientColor to control the base illumination.
Scope: static
Source: src/gameobjects/lights/LightsManager.js#L23
Since: 3.0.0
Public Members
active
active: boolean
Description:
Whether the Lights Manager is enabled.
Source: src/gameobjects/lights/LightsManager.js#L71
Since: 3.0.0
ambientColor
ambientColor: Phaser.Display.RGB
Description:
The ambient color.
Source: src/gameobjects/lights/LightsManager.js#L62
Since: 3.50.0
lights
lights: Array.<Phaser.GameObjects.Light>
Description:
The Lights in the Scene.
Source: src/gameobjects/lights/LightsManager.js#L52
Since: 3.0.0
maxLights
maxLights: number
Description:
The maximum number of lights that a single Camera and the lights shader can process. Change this via the maxLights property in your game config, as it cannot be changed at runtime.
Source: src/gameobjects/lights/LightsManager.js#L81
Since: 3.15.0
visibleLights
visibleLights: number
Description:
The number of lights processed in the previous frame.
Source: src/gameobjects/lights/LightsManager.js#L92
Since: 3.50.0
Public Methods
addLight
<instance> addLight([x], [y], [radius], [rgb], [intensity], [z])
Description:
Creates a new Phaser.GameObjects.Light object, adds it to this Lights Manager, and returns it. The Light will influence all Game Objects using the Light Filter that are within its radius, using the texture's normal map data to compute shading. You can configure its position, radius, color, intensity, and z-height (which affects the angle of the shading effect).
Parameters:
| name | type | optional | default | description |
|---|---|---|---|---|
| x | number | Yes | 0 | The horizontal position of the Light. |
| y | number | Yes | 0 | The vertical position of the Light. |
| radius | number | Yes | 128 | The radius of the Light. |
| rgb | number | Yes | "0xffffff" | The integer RGB color of the light. |
| intensity | number | Yes | 1 | The intensity of the Light. |
| z | number | Yes | The z position of the light. If omitted, it will be set to radius * 0.1. |
Returns: Phaser.GameObjects.Light - The Light that was added.
Source: src/gameobjects/lights/LightsManager.js#L301
Since: 3.0.0
addPointLight
<instance> addPointLight(x, y, [color], [radius], [intensity], [attenuation])
Description:
Creates a new Point Light Game Object and adds it to the Scene.
Note: This method will only be available if the Point Light Game Object has been built into Phaser.
The Point Light Game Object provides a way to add a point light effect into your game, without the expensive shader processing requirements of the traditional Light Game Object.
The difference is that the Point Light renders using a custom shader, designed to give the impression of a point light source, of variable radius, intensity and color, in your game. However, unlike the Light Game Object, it does not impact any other Game Objects, or use their normal maps for calculations. This makes them extremely fast to render compared to Lights and perfect for special effects, such as flickering torches or muzzle flashes.
For maximum performance you should batch Point Light Game Objects together. This means ensuring they follow each other consecutively on the display list. Ideally, use a Layer Game Object and then add just Point Lights to it, so that it can batch together the rendering of the lights. You don't have to do this, and if you've only a handful of Point Lights in your game then it's perfectly safe to mix them into the display list as normal. However, if you're using a large number of them, please consider how they are mixed into the display list.
The renderer will automatically cull Point Lights. Those with a radius that does not intersect with the Camera will be skipped in the rendering list. This happens automatically and the culled state is refreshed every frame, for every camera.
The origin of a Point Light is always 0.5 and it cannot be changed.
Point Lights are a WebGL only feature and do not have a Canvas counterpart.
Parameters:
| name | type | optional | default | description |
|---|---|---|---|---|
| x | number | No | The horizontal position of this Point Light in the world. | |
| y | number | No | The vertical position of this Point Light in the world. | |
| color | number | Yes | "0xffffff" | The color of the Point Light, given as a hex value. |
| radius | number | Yes | 128 | The radius of the Point Light. |
| intensity | number | Yes | 1 | The intensity, or color blend, of the Point Light. |
| attenuation | number | Yes | 0.1 | The attenuation of the Point Light. This is the reduction of light from the center point. |
Returns: Phaser.GameObjects.PointLight - The Game Object that was created.
Source: src/gameobjects/lights/LightsManager.js#L103
Since: 3.50.0
destroy
<instance> destroy()
Description:
Destroy the Lights Manager.
Cleans up all references by calling Phaser.GameObjects.LightsManager#shutdown.
Source: src/gameobjects/lights/LightsManager.js#L374
Since: 3.0.0
disable
<instance> disable()
Description:
Disable the Lights Manager. When disabled, the lighting system no longer affects the rendering of Game Objects using the Light Filter, effectively switching them back to unlit rendering. The existing lights and ambient color are preserved and will take effect again if the manager is re-enabled.
Returns: Phaser.GameObjects.LightsManager - This Lights Manager instance.
Source: src/gameobjects/lights/LightsManager.js#L171
Since: 3.0.0
enable
<instance> enable()
Description:
Enable the Lights Manager. This activates the lighting system for the Scene, causing all Game Objects using the Light Filter to be affected by the configured lights and ambient color. On first enable, the maxLights value is read from the renderer configuration.
Returns: Phaser.GameObjects.LightsManager - This Lights Manager instance.
Source: src/gameobjects/lights/LightsManager.js#L149
Since: 3.0.0
getLightCount
<instance> getLightCount()
Description:
Get the number of Lights managed by this Lights Manager.
Returns: number - The number of Lights managed by this Lights Manager.
Source: src/gameobjects/lights/LightsManager.js#L288
Since: 3.0.0
getLights
<instance> getLights(camera)
Description:
Get all lights that can be seen by the given Camera.
It will automatically cull lights that are outside the world view of the Camera.
If more lights are returned than supported by the renderer, the lights are then culled based on the distance from the center of the camera. Only those closest are rendered.
Parameters:
| name | type | optional | description |
|---|---|---|---|
| camera | Phaser.Cameras.Scene2D.Camera | No | The Camera to cull Lights for. |
Returns: Array.<Phaser.GameObjects.Light> - The culled Lights.
Source: src/gameobjects/lights/LightsManager.js#L189
Since: 3.50.0
getMaxVisibleLights
<instance> getMaxVisibleLights()
Description:
Returns the maximum number of Lights allowed to appear at once.
Returns: number - The maximum number of Lights allowed to appear at once.
Source: src/gameobjects/lights/LightsManager.js#L275
Since: 3.0.0
removeLight
<instance> removeLight(light)
Description:
Removes a Phaser.GameObjects.Light from this Lights Manager. The Light will no longer influence the rendering of any Game Objects. The Light object itself is not destroyed; it is simply removed from the manager's active list.
Parameters:
| name | type | optional | description |
|---|---|---|---|
| light | Phaser.GameObjects.Light | No | The Light to remove. |
Returns: Phaser.GameObjects.LightsManager - This Lights Manager instance.
Source: src/gameobjects/lights/LightsManager.js#L337
Since: 3.0.0
setAmbientColor
<instance> setAmbientColor(rgb)
Description:
Set the ambient light color.
Parameters:
| name | type | optional | description |
|---|---|---|---|
| rgb | number | No | The integer RGB color of the ambient light. |
Returns: Phaser.GameObjects.LightsManager - This Lights Manager instance.
Source: src/gameobjects/lights/LightsManager.js#L256
Since: 3.0.0
shutdown
<instance> shutdown()
Description:
Shuts down the Lights Manager and clears all active Lights. This is called automatically when a Scene shuts down. The Lights Manager can be re-enabled afterwards by calling Phaser.GameObjects.LightsManager#enable.
Source: src/gameobjects/lights/LightsManager.js#L361
Since: 3.0.0
sortByDistance
<instance> sortByDistance(a, b)
Description:
Sort function to sort lights by distance from the camera. The sort is in reverse order, so that the furthest light is culled first.
Parameters:
| name | type | optional | description |
|---|---|---|---|
| a | number | No | A light entry object with a distance property representing its distance from the camera center. |
| b | number | No | A light entry object with a distance property representing its distance from the camera center. |
Returns: boolean - True if a is further than b, otherwise false.
Source: src/gameobjects/lights/LightsManager.js#L240
Since: 4.0.0