Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


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

GetBool(int)

Use this method to get the value of a named bool property from the VFXEventAttribute.
public bool GetBool(int nameID)

Parameters

nameID

The ID of the property. This is the same ID that Shader.PropertyToID returns.

Returns

Type

Description

boolThe value for the bool you specify. Returns
false
if VFXEventAttribute.HasBool returns
false
.

GetBool(string)

Use this method to get the value of a named bool property from the VFXEventAttribute.
public bool GetBool(string name)

Parameters

name

The name of the property.

Returns

Type

Description

boolThe value for the bool you specify. Returns
false
if VFXEventAttribute.HasBool returns
false
.