]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
strafehud: fix small mistakes of previous projection code commit
authorJuhu <5894800-Juhu_@users.noreply.gitlab.com>
Fri, 20 Jan 2023 21:46:10 +0000 (22:46 +0100)
committerJuhu <5894800-Juhu_@users.noreply.gitlab.com>
Tue, 4 Apr 2023 17:50:38 +0000 (19:50 +0200)
_hud_common.cfg
qcsrc/client/hud/panel/strafehud.qh

index 9a063f7523a6547f7d8b4a5dd1a5ea9bb9d1c32b..a3b4a5c2026f78843a99b0aa63874abb83243d58 100644 (file)
@@ -224,7 +224,7 @@ seta hud_panel_strafehud_sonar_pitch_exponent "1" "exponent of the dynamic playb
 seta hud_panel_strafehud_vangle "0" "set to \"1\" to enable the vertical angle indicator"
 seta hud_panel_strafehud_vangle_color "0.75 0.75 0.75" "color of the vertical angle text"
 seta hud_panel_strafehud_vangle_size "1" "size of the vertical angle text (relative to the panel height)"
-seta hud_panel_strafehud_projection "0" "strafehud projection mode, \"0\" = Linear, \"1\" = Perspective, \"2\" = Panoramic"
+seta hud_panel_strafehud_projection "0" "strafehud projection mode, \"0\" = linear, \"1\" = perspective, \"2\" = panoramic"
 
 // hud panel aliases
 alias quickmenu "cl_cmd hud quickmenu ${* ?}"
index 7080327d88fdd198b6c0055bea98b274720bcbea..d5a9f6bddaf5f2497329dede8ca2133a018bd3d8 100644 (file)
@@ -73,7 +73,7 @@ float autocvar_hud_panel_strafehud_sonar_pitch_exponent = 1;
 bool autocvar_hud_panel_strafehud_vangle = false;
 vector autocvar_hud_panel_strafehud_vangle_color = '0.75 0.75 0.75';
 float autocvar_hud_panel_strafehud_vangle_size = 1;
-int autocvar_hud_panel_strafehud_projection = 1;
+int autocvar_hud_panel_strafehud_projection = 0;
 
 void HUD_Panel_DrawStrafeHUD(float, float, float, vector, float, int, int, bool, float);
 vector StrafeHUD_mixColors(vector, vector, float);