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