test bump-3dpd lib

This commit is contained in:
2025-03-03 22:29:51 +03:00
parent 85df2fb243
commit 208204ae8a
5 changed files with 1069 additions and 104 deletions

View File

@ -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