test bump-3dpd lib
This commit is contained in:
@ -356,6 +356,15 @@ end
|
||||
function Vector3:horizontal()
|
||||
return Vector3(self.x, 0.0, self.z)
|
||||
end
|
||||
|
||||
---Returns the components of the vector individually.
|
||||
---@return number
|
||||
---@return number
|
||||
---@return number
|
||||
function Vector3:decomposed()
|
||||
return self.x, self.y, self.z
|
||||
end
|
||||
|
||||
---- CONSTANTS
|
||||
|
||||
---@type Vector3
|
||||
|
Reference in New Issue
Block a user