GetBool
Use this method to get the value of a named bool property from the VFXEventAttribute.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Method
- Namespace: UnityEngine.VFX
- Assembly: UnityEngine.VFXModule
GetBool(int)
Use this method to get the value of a named bool property from the VFXEventAttribute.
public bool GetBool(int nameID)
Parameters
The ID of the property. This is the same ID that Shader.PropertyToID returns.
Returns
Type | Description |
|---|---|
| bool | The value for the bool you specify. Returns |
GetBool(string)
Use this method to get the value of a named bool property from the VFXEventAttribute.
public bool GetBool(string name)
Parameters
The name of the property.
Returns
Type | Description |
|---|---|
| bool | The value for the bool you specify. Returns |