A function defined in BBMOD_MaterialPropertyBlock.gml
set_float_array(_name, _value)
Sets a value of a BBMOD_EShaderUniformType.FloatArray 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_float_array("u_vFloatArray", [1.0, 2.0, 3.0, 4.0, 5.0]);
This is a shorthand for set(name, BBMOD_EShaderUniformType.FloatArray, value)
.
BBMOD_MaterialPropertyBlock.set
Copyright © 2024, BlueBurn. Built on September 07, 2024 using GMDoc.