add throw signal to player

This commit is contained in:
2025-02-14 15:17:05 +03:00
parent aff1bfd247
commit 2515fe7b27
3 changed files with 20 additions and 0 deletions

View File

@ -211,6 +211,11 @@ function Vector3:rotated(axis, angle)
return Vector3(v)
end
---Returns a copy of this vector.
---@return Vector3
function Vector3:copy()
return Vector3(self)
end
---- CONSTANTS
Vector3.UP = Vector3(0, 1, 0)