GetUInt
Gets the value of a named unsigned integer property.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: UnityEngine.VFX
- Assembly: UnityEngine.VFXModule
GetUInt(int)
Gets the value of a named unsigned integer property.
public uint GetUInt(int nameID)
Parameters
The ID of the property. This is the same ID that Shader.PropertyToID returns.
Returns
Type | Description |
|---|---|
| uint | The value for the unsigned integer you specify. Returns |
GetUInt(string)
Gets the value of a named unsigned integer property.
public uint GetUInt(string name)
Parameters
The name of the property.
Returns
Type | Description |
|---|---|
| uint | The value for the unsigned integer you specify. Returns |