Vector2 Right { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Vector2.Right property provides a static 2D vector with the X component set to -1, representing the right-hand direction in 2D space. This is useful for operations that require a directional vector pointing to the right.

Usage

Use Vector2.Right when you need a standard vector pointing to the right in 2D space. This can be particularly useful in graphics programming, physics calculations, or any scenario where a directional vector is required.

Example

// Example of using Vector2.Right
Vector2 direction = Vector2.Right;

// Use the direction vector in a movement calculation
Vector2 position = new Vector2(0, 0);
float speed = 5.0f;
position += direction * speed;

// position is now (-5, 0)