Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


SetFloats

Sets the values for a float array uniform.
Read time 1 minuteLast updated 12 days ago

Definition

SetFloats(string, float[])

Sets the values for a float array uniform.
public void SetFloats(string name, params float[] values)

Parameters

name

The name of the property being set.

values

The float array to set.

Remarks

Only shaders defined in the .raytrace file can access the values you designate as the argument for this method. To make these values accessible to all ray tracing shader types (closest hit, any hit, miss, etc.), call the Shader.SetGlobalFloatArray method instead.

SetFloats(int, float[])

Sets the values for a float array uniform.
public void SetFloats(int nameID, params float[] values)

Parameters

nameID

The ID of the property as given by Shader.PropertyToID.

values

The float array to set.

Remarks

Only shaders defined in the .raytrace file can access the values you designate as the argument for this method. To make these values accessible to all ray tracing shader types (closest hit, any hit, miss, etc.), call the Shader.SetGlobalFloatArray method instead.