From bc968b2b4c1eb17f66a6294993ed85dfd33e8c7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erkki=20Sepp=C3=A4l=C3=A4?= Date: Mon, 20 Oct 2014 20:50:31 +0300 Subject: [PATCH] plane: adjusted parameters --- entities/plane.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/entities/plane.lua b/entities/plane.lua index 05c614f..647d686 100644 --- a/entities/plane.lua +++ b/entities/plane.lua @@ -56,9 +56,9 @@ local lift = function(angle) return 1.68429 * math.exp(-math.pow(angle / math.pi * 180.0 -17.3801, 2.0) / (2.0 * math.pow(15.0, 2.0))) end -local fwd_frict_coeff = 0.5 -local nor_frict_coeff = 0.9 -local tail_frict_coeff = 0.5 +local fwd_frict_coeff = 0.1 +local nor_frict_coeff = 0.8 +local tail_frict_coeff = 0.4 local tail_area = 5.0 local turn_coeff = 500.0 local wing_lift = 0.5 @@ -67,7 +67,7 @@ local decel_speed = 400.0 local max_motorPower = ENGINE_MAX local head_area = 1.0 local plane_area = 10.0 -local motor_speed_ratio = 100.0 +local motor_speed_ratio = 80.0 local out_of_bounds_coeff_multiplier = 10.0