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