mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-09 17:03:45 +01:00
489d856176
Also moved saplingaliases and corrected the block text in forest.lua
10 lines
356 B
Lua
10 lines
356 B
Lua
function worldeditadditions.player_axis2d(name)
|
|
-- minetest.get_player_by_name("singleplayer"):
|
|
local dir = math.floor(minetest.get_player_by_name(name):get_look_horizontal() / math.pi * 2 + 0.5) % 3
|
|
local crdnl = { {1,"z"},{-1,"x"},{-1,"z"},{1,"x"} }
|
|
return crdnl[dir+1]
|
|
end
|
|
|
|
-- Tests
|
|
-- /lua print(unpack(worldeditadditions.player_axis2d(myname)))
|