Version: 5.5
public void SetInt (string propertyName, int value);
public void SetInt (int nameID, int value);

パラメーター

propertyName プロパティー名。例えば、"_SrcBlend"。
nameID プロパティー名 ID。Shader.PropertyToID を使って取得します。
value 設定する整数値。

説明

int 値を設定します

When setting values on materials using the Standard Shader, you should be aware that you may need to use EnableKeyword to enable features of the shader that were not previously in use. For more detail, read Accessing Materials via Script.

この関数は渡された値を int に型キャストする SetFloat のエイリアスです。