added description

This commit is contained in:
VorTechnix 2021-02-24 19:42:24 -08:00
parent f6ed297270
commit b62e4f706d
1 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,6 @@
-- 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