From a58a36803fbe1f85d7ba39c61347168111d218e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erkki=20Sepp=C3=A4l=C3=A4?= Date: Sun, 19 Oct 2014 02:50:47 +0300 Subject: [PATCH] Plane: adjusted physics parameters --- entities/plane.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entities/plane.lua b/entities/plane.lua index ff8070e..f8e89d1 100644 --- a/entities/plane.lua +++ b/entities/plane.lua @@ -21,9 +21,9 @@ end local fwd_frict_coeff = 0.3 local nor_frict_coeff = 2.0 -local tail_frict_coeff = 0.3 +local tail_frict_coeff = 10.4 local turn_speed = 2.0 -local wing_lift = 0.1 * 5 +local wing_lift = 0.1 * 3 local accel_speed = 100.0 local decel_speed = 200.0 local max_motorPower = ENGINE_MAX