mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
Vector3: tweak
This commit is contained in:
parent
112bb96e99
commit
c76a049286
1 changed files with 2 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue