Sets a matrix 2fv uniform value based on the given name on the currently set shader.
The current shader is bound, before the uniform is set, making it active within the
WebGLRenderer. This means you can safely call this method from a location such as
a Scene create
or update
method. However, when working within a Shader file
directly, use the WebGLShader
method equivalent instead, to avoid the program
being set.
name | type | arguments | description |
---|---|---|---|
name | string |
The name of the uniform to set. |
|
transpose | boolean |
Whether to transpose the matrix. Should be |
|
matrix | Array.<number> | Float32Array |
The new values for the |
|
shader | Phaser.Renderer.WebGL.WebGLShader | <optional> |
The shader to set the value on. If not given, the |
This WebGLPipeline instance.