Add new `get_look_horizontal()` and `get_look_vertical()` to fake player

See minetest/minetest@fa0bbbf96d
This commit is contained in:
Thomas--S 2018-03-26 08:29:29 +02:00
parent cb5530c6c8
commit 7ee48e0938
1 changed files with 2 additions and 0 deletions

View File

@ -99,6 +99,8 @@ local function wielder_on(data, wielder_pos, wielder_node)
get_look_dir = delay(vector.multiply(dir, -1)),
get_look_pitch = delay(pitch),
get_look_yaw = delay(yaw),
get_look_horizontal = delay(yaw),
get_look_vertical = delay(pitch),
get_player_control = delay({ jump=false, right=false, left=false, LMB=false, RMB=false, sneak=data.sneak, aux1=false, down=false, up=false }),
get_player_control_bits = delay(data.sneak and 64 or 0),
get_player_name = delay(data.masquerade_as_owner and wielder_meta:get_string("owner") or ":pipeworks:"..minetest.pos_to_string(wielder_pos)),