mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-23 23:53:44 +01:00
renamed axes.lua to player.lua
This commit is contained in:
parent
43a59b68ff
commit
8225199520
@ -31,7 +31,7 @@ dofile(wea.modpath.."/utils/nodes.lua")
|
|||||||
dofile(wea.modpath.."/utils/node_identification.lua")
|
dofile(wea.modpath.."/utils/node_identification.lua")
|
||||||
dofile(wea.modpath.."/utils/terrain.lua")
|
dofile(wea.modpath.."/utils/terrain.lua")
|
||||||
dofile(wea.modpath.."/utils/raycast_adv.lua") -- For the farwand
|
dofile(wea.modpath.."/utils/raycast_adv.lua") -- For the farwand
|
||||||
dofile(wea.modpath.."/utils/axes.lua")
|
dofile(wea.modpath.."/utils/player.lua") -- Player info functions
|
||||||
|
|
||||||
dofile(wea.modpath.."/lib/compat/saplingnames.lua")
|
dofile(wea.modpath.."/lib/compat/saplingnames.lua")
|
||||||
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-- Returns the player's position (at leg level).
|
||||||
|
-- @param name string The name of the player to return facing direction of.
|
||||||
|
-- @return Returns position.
|
||||||
|
function worldeditadditions.player_vector(name)
|
||||||
|
return minetest.get_player_by_name(name):get_pos()
|
||||||
|
end
|
||||||
-- Returns the player's facing direction on the horizontal axes only.
|
-- Returns the player's facing direction on the horizontal axes only.
|
||||||
-- @param name string The name of the player to return facing direction of.
|
-- @param name string The name of the player to return facing direction of.
|
||||||
-- @return Returns axis name and sign multiplier.
|
-- @return Returns axis name and sign multiplier.
|
Loading…
Reference in New Issue
Block a user