Vector3: tweak

This commit is contained in:
Starbeamrainbowlabs 2021-06-26 16:47:22 +01:00
parent 112bb96e99
commit c76a049286
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 2 additions and 3 deletions

View File

@ -230,9 +230,8 @@ end
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
-- ██████ ████ ███████ ██ ██ ██ ██ ██ ██████ ███████ ███████
function Vector3.__call(x, y, z)
return Vector3.new(x, y, z)
end
function Vector3.__call(x, y, z) return Vector3.new(x, y, z) end
function Vector3.__add(a, b)
return Vector3.add(a, b)
end