Name | Type | Description |
---|---|---|
renderer |
PIXI.Renderer |
The renderer this System works for. |
Extends
Members
-
Whether current blend equation is different
-
Blend mode
- Default Value:
- PIXI.BLEND_MODES.NONE
-
Collection of check calls
-
defaultState PIXI.State readonly
-
Default WebGL State
-
GL context
-
Collection of calls
-
Polygon offset
-
renderer PIXI.Renderer inherited
-
The renderer this manager works for.
-
State ID
Methods
-
destroy () inherited
-
Generic destroy methods to be overridden by the subclass
-
Sets the state, when previous state is unknown
Name Type Description state
* The state to set
-
Resets all the logic and disables the vaos
-
Sets the current state
Name Type Description state
* The state to set.
-
Enables or disabled blending.
Name Type Description value
boolean Turn on or off webgl blending.
-
Sets the blend mode.
Name Type Description value
number The blend mode to set to.
-
Sets whether to enable or disable cull face.
Name Type Description value
boolean Turn on or off webgl cull face.
-
Sets whether to enable or disable depth test.
Name Type Description value
boolean Turn on or off webgl depth testing.
-
Sets the gl front face.
Name Type Description value
boolean true is clockwise and false is counter-clockwise
-
Enables or disable polygon offset fill
Name Type Description value
boolean Turn on or off webgl polygon offset testing.
-
Sets the polygon offset.
Name Type Description value
number the polygon offset
scale
number the polygon offset scale
-
checks to see which updates should be checked based on which settings have been activated. For example, if blend is enabled then we should check the blend modes each time the state is changed or if polygon fill is activated then we need to check if the polygon offset changes. The idea is that we only check what we have too.
Name Type Description func
function the checking function to add or remove
value
boolean should the check function be added or removed.