changed exit button

This commit is contained in:
Alexsandro Percy 2023-07-04 18:56:41 -03:00
parent ffe03405f5
commit e74e27ca25

View file

@ -30,10 +30,10 @@ function airutils.pilot_formspec(name)
if ent._yaw_by_mouse then yaw = "true" end
basic_form = basic_form.."button[1,1.0;4,1;turn_on;Start/Stop Engines]"
basic_form = basic_form.."button[1,2.1;4,1;go_out;Go Out!]"
basic_form = basic_form.."button[1,3.2;4,1;hud;Show/Hide Gauges]"
basic_form = basic_form.."button[1,4.3;4,1;inventory;Show Inventory]"
basic_form = basic_form.."checkbox[1,5.7;yaw;Yaw by mouse;"..yaw.."]"
basic_form = basic_form.."button[1,2.1;4,1;hud;Show/Hide Gauges]"
basic_form = basic_form.."button[1,3.2;4,1;inventory;Show Inventory]"
basic_form = basic_form.."checkbox[1,4.7;yaw;Yaw by mouse;"..yaw.."]"
basic_form = basic_form.."button[1,5.2;4,1;go_out;Go Out!]"
minetest.show_formspec(name, "lib_planes:pilot_main", basic_form)
end