Operation

Enumeration that represents the operation mode in various functions of this API. Usually used when adding, subtracting or setting values.

Values

Add [0]Indicates that the values should be added
Subtract [1]Indicates that the values should be subtracted
Set [2]Indicates that the values should be set

Examples

local add = Operation.Add;

local subtract = Operation.Subtract;

local set = Operation.Set;