Vector2.Perpendicular(Vector2 inDirection)
Returns the 2D vector perpendicular to this 2D vector. The result is always rotated 90-degrees in a counter-clockwise direction for a 2D coordinate system where the positive Y axis goes up.
Parameters:
Name | Type | Description |
---|---|---|
inDirection | Vector2 | The input direction. |
Returns:
type | Description |
---|---|
Vector2 | The perpendicular direction. |
Usage
---@type Vector2
local inDirection;
local val0 = Vector2:Perpendicular(inDirection)