Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


SetGlobalFloat

Add a "set global shader float property" command.
Read time 1 minuteLast updated 5 days ago

Definition

SetGlobalFloat(int, float)

Add a "set global shader float property" command.
public void SetGlobalFloat(int nameID, float value)

Parameters

nameID


value

Remarks

When the command buffer will be executed, a global shader float property will be set at this point. The effect is as if Shader.SetGlobalFloat was called.

SetGlobalFloat(string, float)

Add a "set global shader float property" command.
public void SetGlobalFloat(string name, float value)

Parameters

name


value

Remarks

When the command buffer will be executed, a global shader float property will be set at this point. The effect is as if Shader.SetGlobalFloat was called.