Version: 5.4
public void SetColorArray (string name, Color[] values);
public void SetColorArray (int nameID, Color[] values);

파라미터

name Property name.
nameID Property name ID, use Shader.PropertyToID to get it.
values Array of values to set.

설명

Set a color array property.

Sets a color array property on the material. If a color array property with the given name already exists, the old value is replaced.

The array length can't be changed once it has been added to the block. If you subsequently try to set a longer array into the same property, the length will be capped to the original length and the extra items you tried to assign will be ignored. If you set a shorter array than the original length, your values will be assigned but the original values will remain for the array elements beyond the length of your new shorter array.

See Also: SetVectorArray, SetFloatArray, SetMatrixArray.