Vector2()Operator ( Vector2 + Vector2 )On this pageOperator ( Vector2 + Vector2 ) Adds two vectors. Adds corresponding components together. LHS TypeSymbolRHS TypeResult TypeVector2+Vector2Vector2 Usage ---@type Vector2local lhs;---@type Vector2local rhs;local result = lhs + rhs; -- result is Vector2