A function defined in BBMOD_MaterialPropertyBlock.gml
set_matrix_array(_name, _value)
Sets a value of a BBMOD_EShaderUniformType.MatrixArray property.
Name | Type | Description |
---|---|---|
_name | String |
The name of the property (shader uniform name). |
_value | Array |
The property value. |
Struct.BBMOD_MaterialPropertyBlock
Returns self
.
var _materialProps = new BBMOD_MaterialPropertyBlock();
_materialProps.set_matrix_array("u_mMatrixArray1", matrix_build_identity());
_materialProps.set_matrix_array("u_mMatrixArray2", new BBMOD_Matrix().Raw);
This is a shorthand for set(name, BBMOD_EShaderUniformType.MatrixArray, value)
.
BBMOD_MaterialPropertyBlock.set, BBMOD_Matrix
Copyright © 2024, BlueBurn. Built on September 07, 2024 using GMDoc.