mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-09 17:03:45 +01:00
13 lines
558 B
Lua
13 lines
558 B
Lua
-- Returns the player's facing direction on the horizontal axes only.
|
|
-- @param name string The name of the player to return facing direction of.
|
|
-- @return table Returns axis name and sign multiplyer.
|
|
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) % 4
|
|
local crdnl = { {1,"z"},{-1,"x"},{-1,"z"},{1,"x"} }
|
|
return crdnl[dir+1]
|
|
end
|
|
|
|
-- Tests
|
|
-- /lua print(unpack(worldeditadditions.player_axis2d(myname)))
|