Home
last modified time | relevance | path

Searched refs:chase_up (Results 1 – 14 of 14) sorted by relevance

/dports/games/uhexen2/hexen2source-1.5.9/engine/hexen2/
H A Dchase.c26 static cvar_t chase_up = {"chase_up", "16", CVAR_NONE}; variable
36 Cvar_RegisterVariable (&chase_up); in Chase_Init()
76 chase_dest[2] += chase_up.value; in Chase_Update()
78 chase_dest[2] = r_refdef.vieworg[2] + chase_up.value; in Chase_Update()
/dports/games/nehquake/NehQuake-bjp-bin-src.linux/src/
H A Dchase.c25 cvar_t chase_up = {"chase_up", "16"}; variable
39 Cvar_RegisterVariable (&chase_up); in Chase_Init()
76 chase_dest[2] = r_refdef.vieworg[2] + chase_up.value; in Chase_Update()
/dports/games/libretro-tyrquake/tyrquake-e76477d/common/
H A Dchase.c27 cvar_t chase_up = { "chase_up", "16", true }; variable
43 Cvar_RegisterVariable(&chase_up); in Chase_Init()
84 chase_dest[2] = r_refdef.vieworg[2] + chase_up.value; in Chase_Update()
/dports/games/vkquake/vkQuake-1.12.2/Quake/
H A Dchase.c27 cvar_t chase_up = {"chase_up", "16", CVAR_NONE}; variable
39 Cvar_RegisterVariable (&chase_up); in Chase_Init()
98 ideal[2] = cl.viewent.origin[2] + chase_up.value; in Chase_UpdateForDrawing()
/dports/games/tenebrae/tenebrae_0/
H A Dchase.c25 cvar_t chase_up = {"chase_up", "16"}; variable
41 Cvar_RegisterVariable (&chase_up); in Chase_Init()
78 chase_dest[2] = r_refdef.vieworg[2] + chase_up.value; in Chase_Update()
/dports/games/quakeforge/quakeforge-0.7.2/qw/source/
H A Dcl_chase.c61 cvar_t *chase_up; variable
70 chase_up = Cvar_Get ("chase_up", "16", CVAR_NONE, NULL, "None"); in Chase_Init_Cvars()
132 if (camera_origin[2] < player_origin[2] + chase_up->value) in Chase_Update()
133 camera_origin[2] = player_origin[2] + chase_up->value; in Chase_Update()
252 camera_origin[2] += chase_up->value; in Chase_Update()
/dports/games/quakeforge/quakeforge-0.7.2/nq/source/
H A Dcl_chase.c60 cvar_t *chase_up; variable
69 chase_up = Cvar_Get ("chase_up", "16", CVAR_NONE, NULL, "None"); in Chase_Init_Cvars()
131 if (camera_origin[2] < player_origin[2] + chase_up->value) in Chase_Update()
132 camera_origin[2] = player_origin[2] + chase_up->value; in Chase_Update()
251 camera_origin[2] += chase_up->value; in Chase_Update()
/dports/games/nexuiz/Nexuiz/sources/darkplaces/
H A Dview.c71 cvar_t chase_up = {CVAR_SAVE, "chase_up", "24", "chase cam distance from the player"}; variable
423 camup = chase_up.value; in V_CalcRefdef()
777 Cvar_RegisterVariable (&chase_up); in V_Init()
H A DChangeLog27377 fix severe bug that made chase_up continually increase up to 118 (thanks to yummyluv for pointing t…
/dports/games/xonotic/Xonotic/source/qcsrc/menu/xonotic/
H A Ddialog_settings_game_view.qc63 me.TD(me, 1, 2, e = makeXonoticSlider(10, 50, 1, "chase_up"));
/dports/games/xonotic/Xonotic/source/darkplaces/
H A Dview.c105 cvar_t chase_up = {CVAR_SAVE, "chase_up", "24", "chase cam distance from the player"}; variable
572 camup = chase_up.value; in V_CalcRefdefUsing()
1177 Cvar_RegisterVariable (&chase_up); in V_Init()
/dports/games/darkplaces/darkplaces/
H A Dview.c105 cvar_t chase_up = {CVAR_SAVE, "chase_up", "24", "chase cam distance from the player"}; variable
572 camup = chase_up.value; in V_CalcRefdefUsing()
1186 Cvar_RegisterVariable (&chase_up); in V_Init()
H A DChangeLog70364 fix severe bug that made chase_up continually increase up to 118 (thanks to yummyluv for pointing t…
/dports/java/java3d/java3d-1.5.2/vecmath/src/javax/vecmath/
H A DGMatrix.java2447 private static void chase_up(double[] s, double[] e, int k, GMatrix v) { in chase_up() method in GMatrix