The Canvas Renderer is responsible for managing 2D canvas rendering contexts, including the one used by the Games canvas. It tracks the internal state of a given context and can renderer textured Game Objects to it, taking into account alpha, blending, and scaling.
new CanvasRenderer(game)
name | type | description |
---|---|---|
game | Phaser.Game |
The Phaser Game instance that owns this renderer. |
Should the Canvas use Image Smoothing or not when drawing Sprites?
The blend modes supported by the Canvas Renderer.
This object maps the Phaser.BlendModes to canvas compositing operations.
The local configuration settings of the CanvasRenderer.
The canvas context currently used by the CanvasRenderer for all rendering operations.
The total number of Game Objects which were rendered in a frame.
The canvas element which the Game uses.
The canvas context used to render all Cameras in all Scenes during the game loop.
The height of the canvas being rendered to.
Has this renderer fully booted yet?
Details about the currently scheduled snapshot.
If a non-null callback
is set in this object, a snapshot of the canvas will be taken after the current frame is fully rendered.
A constant which allows the renderer to be easily identified as a Canvas Renderer.
The width of the canvas being rendered to.
Add a listener for a given event.
name | type | arguments | Default | description |
---|---|---|---|---|
event | string | symbol |
The event name. |
||
fn | function |
The listener function. |
||
context | * | <optional> | this |
The context to invoke the listener with. |
this
.
Takes a Sprite Game Object, or any object that extends it, and draws it to the current context.
name | type | arguments | description |
---|---|---|---|
sprite | Phaser.GameObjects.GameObject |
The texture based Game Object to draw. |
|
frame | Phaser.Textures.Frame |
The frame to draw, doesn't have to be that owned by the Game Object. |
|
camera | Phaser.Cameras.Scene2D.Camera |
The Camera to use for the rendering transform. |
|
parentTransformMatrix | Phaser.GameObjects.Components.TransformMatrix | <optional> |
The transform matrix of the parent container, if set. |
Destroys all object references in the Canvas Renderer.
Calls each of the listeners registered for a given event.
name | type | arguments | description |
---|---|---|---|
event | string | symbol |
The event name. |
|
args | * | <optional> |
Additional arguments that will be passed to the event handler. |
true
if the event had listeners, else false
.
Return an array listing the events for which the emitter has registered listeners.
Prepares the game canvas for rendering.
Return the number of listeners listening to a given event.
name | type | description |
---|---|---|
event | string | symbol |
The event name. |
The number of listeners.
Return the listeners registered for a given event.
name | type | description |
---|---|---|
event | string | symbol |
The event name. |
The registered listeners.
Remove the listeners of a given event.
name | type | arguments | description |
---|---|---|---|
event | string | symbol |
The event name. |
|
fn | function | <optional> |
Only remove the listeners that match this function. |
context | * | <optional> |
Only remove the listeners that have this context. |
once | boolean | <optional> |
Only remove one-time listeners. |
this
.
Add a listener for a given event.
name | type | arguments | Default | description |
---|---|---|---|---|
event | string | symbol |
The event name. |
||
fn | function |
The listener function. |
||
context | * | <optional> | this |
The context to invoke the listener with. |
this
.
The event handler that manages the resize
event dispatched by the Scale Manager.
name | type | description |
---|---|---|
gameSize | Phaser.Structs.Size |
The default Game Size object. This is the un-modified game dimensions. |
baseSize | Phaser.Structs.Size |
The base Size object. The game dimensions multiplied by the resolution. The canvas width / height values match this. |
Add a one-time listener for a given event.
name | type | arguments | Default | description |
---|---|---|---|---|
event | string | symbol |
The event name. |
||
fn | function |
The listener function. |
||
context | * | <optional> | this |
The context to invoke the listener with. |
this
.
Restores the game context's global settings and takes a snapshot if one is scheduled.
The post-render step happens after all Cameras in all Scenes have been rendered.
Called at the start of the render loop.
Remove all listeners, or those of the specified event.
name | type | arguments | description |
---|---|---|---|
event | string | symbol | <optional> |
The event name. |
this
.
Remove the listeners of a given event.
name | type | arguments | description |
---|---|---|---|
event | string | symbol |
The event name. |
|
fn | function | <optional> |
Only remove the listeners that match this function. |
context | * | <optional> |
Only remove the listeners that have this context. |
once | boolean | <optional> |
Only remove one-time listeners. |
this
.
The core render step for a Scene Camera.
Iterates through the given array of Game Objects and renders them with the given Camera.
This is called by the CameraManager.render
method. The Camera Manager instance belongs to a Scene, and is invoked
by the Scene Systems.render method.
This method is not called if Camera.visible
is false
, or Camera.alpha
is zero.
name | type | description |
---|---|---|
scene | Phaser.Scene |
The Scene to render. |
children | Array.<Phaser.GameObjects.GameObject> |
An array of filtered Game Objects that can be rendered by the given Camera. |
camera | Phaser.Cameras.Scene2D.Camera |
The Scene Camera to render with. |
Resets the transformation matrix of the current context to the identity matrix, thus resetting any transformation.
Resize the main game canvas.
name | type | arguments | description |
---|---|---|---|
width | number | <optional> |
The new width of the renderer. |
height | number | <optional> |
The new height of the renderer. |
Sets the global alpha of the current context.
name | type | description |
---|---|---|
alpha | number |
The new alpha to use, where 0 is fully transparent and 1 is fully opaque. |
This CanvasRenderer object.
Sets the blend mode (compositing operation) of the current context.
name | type | description |
---|---|---|
blendMode | string |
The new blend mode which should be used. |
This CanvasRenderer object.
Changes the Canvas Rendering Context that all draw operations are performed against.
name | type | arguments | description |
---|---|---|---|
ctx | CanvasRenderingContext2D | <optional> |
The new Canvas Rendering Context to draw everything to. Leave empty to reset to the Game Canvas. |
The Canvas Renderer instance.
Removes all listeners.
Schedules a snapshot of the entire game viewport to be taken after the current frame is rendered.
To capture a specific area see the snapshotArea
method. To capture a specific pixel, see snapshotPixel
.
Only one snapshot can be active per frame. If you have already called snapshotPixel
, for example, then
calling this method will override it.
Snapshots work by creating an Image object from the canvas data, this is a blocking process, which gets more expensive the larger the canvas size gets, so please be careful how you employ this in your game.
name | type | arguments | Default | description |
---|---|---|---|---|
callback | Phaser.Types.Renderer.Snapshot.SnapshotCallback |
The Function to invoke after the snapshot image is created. |
||
type | string | <optional> | 'image/png' |
The format of the image to create, usually |
encoderOptions | number | <optional> | 0.92 |
The image quality, between 0 and 1. Used for image formats with lossy compression, such as |
This WebGL Renderer.
Schedules a snapshot of the given area of the game viewport to be taken after the current frame is rendered.
To capture the whole game viewport see the snapshot
method. To capture a specific pixel, see snapshotPixel
.
Only one snapshot can be active per frame. If you have already called snapshotPixel
, for example, then
calling this method will override it.
Snapshots work by creating an Image object from the canvas data, this is a blocking process, which gets more expensive the larger the canvas size gets, so please be careful how you employ this in your game.
name | type | arguments | Default | description |
---|---|---|---|---|
x | number |
The x coordinate to grab from. |
||
y | number |
The y coordinate to grab from. |
||
width | number |
The width of the area to grab. |
||
height | number |
The height of the area to grab. |
||
callback | Phaser.Types.Renderer.Snapshot.SnapshotCallback |
The Function to invoke after the snapshot image is created. |
||
type | string | <optional> | 'image/png' |
The format of the image to create, usually |
encoderOptions | number | <optional> | 0.92 |
The image quality, between 0 and 1. Used for image formats with lossy compression, such as |
This WebGL Renderer.
Takes a snapshot of the given area of the given canvas.
Unlike the other snapshot methods, this one is processed immediately and doesn't wait for the next render.
Snapshots work by creating an Image object from the canvas data, this is a blocking process, which gets more expensive the larger the canvas size gets, so please be careful how you employ this in your game.
name | type | arguments | Default | description |
---|---|---|---|---|
canvas | HTMLCanvasElement |
The canvas to grab from. |
||
callback | Phaser.Types.Renderer.Snapshot.SnapshotCallback |
The Function to invoke after the snapshot image is created. |
||
getPixel | boolean | <optional> | false |
Grab a single pixel as a Color object, or an area as an Image object? |
x | number | <optional> | 0 |
The x coordinate to grab from. |
y | number | <optional> | 0 |
The y coordinate to grab from. |
width | number | <optional> | canvas.width |
The width of the area to grab. |
height | number | <optional> | canvas.height |
The height of the area to grab. |
type | string | <optional> | 'image/png' |
The format of the image to create, usually |
encoderOptions | number | <optional> | 0.92 |
The image quality, between 0 and 1. Used for image formats with lossy compression, such as |
This Canvas Renderer.
Schedules a snapshot of the given pixel from the game viewport to be taken after the current frame is rendered.
To capture the whole game viewport see the snapshot
method. To capture a specific area, see snapshotArea
.
Only one snapshot can be active per frame. If you have already called snapshotArea
, for example, then
calling this method will override it.
Unlike the other two snapshot methods, this one will return a Color
object containing the color data for
the requested pixel. It doesn't need to create an internal Canvas or Image object, so is a lot faster to execute,
using less memory.
name | type | description |
---|---|---|
x | number |
The x coordinate of the pixel to get. |
y | number |
The y coordinate of the pixel to get. |
callback | Phaser.Types.Renderer.Snapshot.SnapshotCallback |
The Function to invoke after the snapshot pixel data is extracted. |
This WebGL Renderer.