about summary refs log tree commit diff
path: root/src/game/g_tuning.h
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2008-03-16 22:32:17 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2008-03-16 22:32:17 +0000
commit4a3c2e2c8c3a8dee5828258f920f1c175e952cb0 (patch)
treee0fda9dfad5e605c0810c8f27d719078cd48fd63 /src/game/g_tuning.h
parent727c9a3a3249deec1c5a96025e99c0c654e7ff80 (diff)
downloadzcatch-4a3c2e2c8c3a8dee5828258f920f1c175e952cb0.tar.gz
zcatch-4a3c2e2c8c3a8dee5828258f920f1c175e952cb0.zip
loads of fixes, skidding, velocity ramping and other stuff
Diffstat (limited to 'src/game/g_tuning.h')
-rw-r--r--src/game/g_tuning.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/game/g_tuning.h b/src/game/g_tuning.h
index c2201889..b80398d4 100644
--- a/src/game/g_tuning.h
+++ b/src/game/g_tuning.h
@@ -12,15 +12,20 @@ MACRO_TUNING_PARAM(hook_fire_speed, 45.0f)
 MACRO_TUNING_PARAM(hook_drag_accel, 3.0f)
 MACRO_TUNING_PARAM(hook_drag_speed, 15.0f)
 MACRO_TUNING_PARAM(gravity, 0.5f)
-MACRO_TUNING_PARAM(terminal_velocity, 1000.0f / ticks_per_second)
+
+MACRO_TUNING_PARAM(velramp_start, 500)
+MACRO_TUNING_PARAM(velramp_range, 2000)
+MACRO_TUNING_PARAM(velramp_curvature, 1.5f)
 
 /* weapon tuning */
-MACRO_TUNING_PARAM(gun_speed, 30.0f)
+MACRO_TUNING_PARAM(gun_curvature, 1.5f)
+MACRO_TUNING_PARAM(gun_speed, 2200.0f)
 
-MACRO_TUNING_PARAM(shotgun_speed_center, 40.0f)
-MACRO_TUNING_PARAM(shotgun_speed_wide, 30.0f)
+MACRO_TUNING_PARAM(shotgun_curvature, 1.5f)
+MACRO_TUNING_PARAM(shotgun_speed, 2200.0f)
 
-MACRO_TUNING_PARAM(grenade_speed, 15.0f)
+MACRO_TUNING_PARAM(grenade_curvature, 7.0f)
+MACRO_TUNING_PARAM(grenade_speed, 900.0f)
 
 MACRO_TUNING_PARAM(laser_reach, 800.0f)
 MACRO_TUNING_PARAM(laser_bounce_delay, 150)