abstractnew PIXI.SystemRenderer(system, width, height, options)
| Name | Type | Default | Description | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
system |
string |
The name of the system this renderer is for. |
|||||||||||||||||||||||||||||||||||||
width |
number | 800 |
optional
the width of the canvas view |
||||||||||||||||||||||||||||||||||||
height |
number | 600 |
optional
the height of the canvas view |
||||||||||||||||||||||||||||||||||||
options |
object |
optional
The optional renderer parameters
|
Extends
- EventEmitter
Members
-
backgroundColor
-
Sets the background color.
Methods
-
destroy(removeView)
-
Removes everything from the renderer and optionally removes the Canvas DOM element.
Name Type Default Description removeViewboolean false optional Removes the Canvas element from the DOM.
-
generateTexture(displayObject, scaleMode, resolution){PIXI.Texture}
-
Useful function that returns a texture of the display object that can then be used to create sprites
This can be quite useful if your displayObject is complicated and needs to be reused multiple times.Name Type Description displayObjectPIXI.DisplayObject The displayObject the object will be generated from
scaleModenumber Should be one of the scaleMode consts
resolutionnumber The resolution / device pixel ratio of the texture being generated
Returns:
Type Description PIXI.Texture a texture of the graphics object -
resize(width, height)
-
Resizes the canvas view to the specified width and height
Name Type Description widthnumber the new width of the canvas view
heightnumber the new height of the canvas view