| Name | Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| options | object | optional The optional renderer parameters 
 | 
Extends
Members
- 
    _activeRenderTarget PIXI.RenderTarget
- 
    
    Holds the current render target 
- 
    _activeShader PIXI.Shader
- 
    
    Holds the current shader 
- 
    autoResize boolean inherited
- 
    
    Whether css dimensions of canvas view should be resized to screen dimensions automatically 
- 
    backgroundColor number inherited
- 
    
    The background color to fill if not transparent 
- 
    blendModes object.<string, mixed> inherited
- 
    
    Tracks the blend modes useful for this renderer. 
- 
    clearBeforeRender boolean inherited
- 
    
    This sets if the CanvasRenderer will clear the canvas or not before the new render pass. If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect to clear the canvas every frame. Disable this by setting this to false. For example if your game has a canvas filling background image you often don't need this set. 
- 
    currentRenderer PIXI.ObjectRenderer
- 
    
    The currently active ObjectRenderer. 
- 
    emptyRenderer PIXI.ObjectRenderer
- 
    
    An empty renderer. 
- 
    extract PIXI.extract.WebGLExtract
- 
    
    Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture 
- 
    filterManager PIXI.FilterManager
- 
    
    Manages the filters. 
- 
    height number readonly inherited
- 
    
    Same as view.height, actual number of pixels in the canvas by vertical - Default Value:
- 600
 
 
- 
    maskManager PIXI.MaskManager
- 
    
    Manages the masks using the stencil buffer. 
- 
    options Object readonly inherited
- 
    
    The supplied constructor options. 
- 
    
    Collection of installed plugins. These are included by default in PIXI, but can be excluded by creating a custom build. Consult the README for more information about creating custom builds and excluding plugins. Properties:Name Type Description accessibilityPIXI.accessibility.AccessibilityManager Support tabbing interactive elements. extractPIXI.extract.WebGLExtract Extract image data from renderer. interactionPIXI.interaction.InteractionManager Handles mouse, touch and pointer events. preparePIXI.prepare.WebGLPrepare Pre-render display objects. 
- 
    preserveDrawingBuffer boolean inherited
- 
    
    The value of the preserveDrawingBuffer flag affects whether or not the contents of the stencil buffer is retained after rendering. 
- 
    resolution number inherited
- 
    
    The resolution / device pixel ratio of the renderer - Default Value:
- 1
 
 
- 
    roundPixels boolean inherited
- 
    
    If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. Handy for crisp pixel art and speed on legacy devices. 
- 
    screen PIXI.Rectangle inherited
- 
    
    Measurements of the screen. (0, 0, screenWidth, screenHeight) Its safe to use as filterArea or hitArea for whole stage 
- 
    state PIXI.WebGLState
- 
    
    The currently active ObjectRenderer. 
- 
    stencilManager PIXI.StencilManager
- 
    
    Manages the stencil buffer. 
- 
    textureManager PIXI.TextureManager
- 
    
    Manages textures 
- 
    transparent boolean inherited
- 
    
    Whether the render view is transparent 
- 
    type number overrides
- 
    
    The type of this renderer as a standardised const - See:
 
- 
    view HTMLCanvasElement inherited
- 
    
    The canvas element that everything is drawn to 
- 
    width number readonly inherited
- 
    
    Same as view.width, actual number of pixels in the canvas by horizontal - Default Value:
- 800
 
 
Methods
- 
    bindRenderTarget (renderTarget)PIXI.WebGLRenderer
- 
    
    
    Changes the current render target to the one given in parameter Name Type Description renderTargetPIXI.RenderTarget the new render target Returns:Type Description PIXI.WebGLRenderer Returns itself. 
- 
    bindRenderTexture (renderTexture, transform)PIXI.WebGLRenderer
- 
    
    
    Binds a render texture for rendering Name Type Description renderTexturePIXI.RenderTexture The render texture to render transformPIXI.Matrix The transform to be applied to the render texture Returns:Type Description PIXI.WebGLRenderer Returns itself. 
- 
    bindShader (shader, autoProject)PIXI.WebGLRenderer
- 
    
    
    Changes the current shader to the one given in parameter Name Type Default Description shaderPIXI.Shader the new shader autoProjectboolean true optional Whether automatically set the projection matrix Returns:Type Description PIXI.WebGLRenderer Returns itself. 
- 
    
    
    Binds the texture. This will return the location of the bound texture. It may not be the same as the one you pass in. This is due to optimisation that prevents needless binding of textures. For example if the texture is already bound it will return the current location of the texture instead of the one provided. To bypass this use force location Name Type Description texturePIXI.Texture the new texture locationnumber the suggested texture location forceLocationboolean force the location Returns:Type Description number bound texture location 
- 
    bindVao (vao)PIXI.WebGLRenderer
- 
    
    
    Changes the current Vao to the one given in parameter Name Type Description vaoPIXI.VertexArrayObject the new Vao Returns:Type Description PIXI.WebGLRenderer Returns itself. 
- 
    
    
    Erases the active render target and fills the drawing area with a colour Name Type Description clearColornumber optional The colour 
- 
    clearRenderTexture (renderTexture, clearColor)PIXI.WebGLRenderer
- 
    
    
    Erases the render texture and fills the drawing area with a colour Name Type Description renderTexturePIXI.RenderTexture The render texture to clear clearColornumber optional The colour Returns:Type Description PIXI.WebGLRenderer Returns itself. 
- 
    
    
    Creates a new VAO from this renderer's context and state. Returns:Type Description VertexArrayObject The new VAO. 
- 
    destroy (removeView) overrides
- 
    
    
    Removes everything from the renderer (event listeners, spritebatch, etc...) Name Type Default Description removeViewboolean false optional Removes the Canvas element from the DOM. See: https://github.com/pixijs/pixi.js/issues/2233 
- 
    
    
    This should be called if you wish to do some custom rendering It will basically render anything that may be batched up such as sprites 
- 
    generateTexture (displayObject, scaleMode, resolution, region)PIXI.Texture inherited
- 
    
    
    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 regionPIXI.Rectangle optional The region of the displayObject, that shall be rendered, if no region is specified, defaults to the local bounds of the displayObject. Returns:Type Description PIXI.Texture a texture of the graphics object 
- 
    
    
    Adds a plugin to the renderer. Name Type Description pluginNamestring The name of the plugin. ctorfunction The constructor function or class for the plugin. 
- 
    
    
    Renders the object to its webGL view Name Type Description displayObjectPIXI.DisplayObject the object to be rendered renderTexturePIXI.RenderTexture The render texture to render to. clearboolean optional Should the canvas be cleared before the new render transformPIXI.Matrix optional A transform to apply to the render texture before rendering. skipUpdateTransformboolean optional Should we skip the update transform pass? 
- 
    
    
    Resets the WebGL state so you can render things however you fancy! Returns:Type Description PIXI.WebGLRenderer Returns itself. 
- 
    resize (screenWidth, screenHeight) overrides
- 
    
    
    Resizes the webGL view to the specified width and height. Name Type Description screenWidthnumber the new width of the screen screenHeightnumber the new height of the screen 
- 
    
    
    Resizes the webGL view to the specified width and height. Name Type Description blendModenumber the desired blend mode 
- 
    
    
    Changes the current renderer to the one given in parameter Name Type Description objectRendererPIXI.ObjectRenderer The object renderer to use. 
- 
    
    
    Sets the transform of the active render target to the given matrix Name Type Description matrixPIXI.Matrix The transformation matrix 
- 
    unbindTexture (texture)PIXI.WebGLRenderer
- 
    
    
    unbinds the texture ... Name Type Description texturePIXI.Texture the texture to unbind Returns:Type Description PIXI.WebGLRenderer Returns itself.