Struct Vector3Bool
Three-dimensional boolean vector.
Inherited Members
Namespace: UnityEngine.Animations.Rigging
Assembly: Unity.Animation.Rigging.dll
Syntax
[Serializable]
public struct Vector3Bool
Constructors
Vector3Bool(bool)
Constructor.
Declaration
public Vector3Bool(bool val)
Parameters
Type | Name | Description |
---|---|---|
bool | val | Boolean value for x, y and z. |
Vector3Bool(bool, bool, bool)
Constructor.
Declaration
public Vector3Bool(bool x, bool y, bool z)
Parameters
Type | Name | Description |
---|---|---|
bool | x | Boolean value for x. |
bool | y | Boolean value for y. |
bool | z | Boolean value for z. |
Fields
x
X component of the vector.
Declaration
public bool x
Field Value
Type | Description |
---|---|
bool |
y
Y component of the vector.
Declaration
public bool y
Field Value
Type | Description |
---|---|
bool |
z
Z component of the vector.
Declaration
public bool z
Field Value
Type | Description |
---|---|
bool |