Description
The Vector3Int.Left
field is a static, read-only field of the Vector3Int
struct. It represents a direction vector pointing to the left in a 3D space, with the Y component set to -1 and the X and Z components set to 0. This field is useful for operations that require a consistent leftward direction, such as movement or orientation calculations in a 3D environment.
Usage
Use Vector3Int.Left
when you need a predefined vector that points to the left. This can be particularly useful in scenarios involving directional movement or when calculating relative positions in a 3D space.
Example
// Example of using Vector3Int.Left
Vector3Int leftDirection = Vector3Int.Left;
// Use the leftDirection in a movement calculation
Vector3Int currentPosition = new Vector3Int(10, 5, 0);
Vector3Int newPosition = currentPosition + leftDirection;
// newPosition will be (10, 4, 0)