Skip to content

Class "Vector"⚓︎

Operators⚓︎

__add ()⚓︎

Vector __add ( Vector Right )⚓︎

Defines the Addition of two Vector objects using the + operator. Fixed version of original function that prevents a crash when the left operant of the vector calculation is nil.

__div ()⚓︎

Vector __div ( float Modifier )⚓︎

Defines the Division of two Vector objects using the / operator. Fixed version of original function that prevents a crash when the left operant of the vector calculation is nil.

__mul ()⚓︎

Vector __mul ( float Modifier )⚓︎

Fixed version of original function that prevents a crash when the left operant of the vector calculation is nil. Defines the Multiplication of two Vector objects using the * operator.

__sub ()⚓︎

Vector __sub ( Vector Right )⚓︎

Fixed version of original function that prevents a crash when the left operant of the vector calculation is nil. Defines the Subtraction of two Vector objects using the - operator.

FromAngle ()⚓︎

void FromAngle ( float Angle )⚓︎