Home
last modified time | relevance | path

Searched refs:cv_cam_height (Results 1 – 8 of 8) sorted by relevance

/dports/games/doomlegacy/doomlegacy_1.48.8_source/src/
H A Dp_local.h198 extern consvar_t cv_cam_height;
H A Dp_user.c723 consvar_t cv_cam_height = {"cam_height", "20" ,CV_FLOAT,NULL}; variable
825 z = pmo->z + (((unsigned int)cv_viewheight.EV)<<FRACBITS) + cv_cam_height.value; in P_MoveChaseCamera()
H A Dr_main.c1607 CV_RegisterVar (&cv_cam_height); in R_Register_EngineStuff()
/dports/games/SRB2/SRB2-SRB2_release_2.2.9/src/
H A Dp_floor.c1728 t_cam_height = cv_cam_height.value; in T_CameraScanner()
1731 CV_SetValue(&cv_cam_height, FixedInt(elevator->sector->floorheight)); in T_CameraScanner()
1738 if (t_cam_height != -42 && cv_cam_height.value != t_cam_height) in T_CameraScanner()
1739 CV_Set(&cv_cam_height, va("%f", (double)FIXED_TO_FLOAT(t_cam_height))); in T_CameraScanner()
H A Dp_local.h115 extern consvar_t cv_cam_dist, cv_cam_still, cv_cam_height;
H A Dr_main.c1610 CV_RegisterVar(&cv_cam_height); in R_RegisterEngineStuff()
H A Dp_user.c9670 consvar_t cv_cam_height = CVAR_INIT ("cam_curheight", "25", CV_FLOAT, NULL, NULL); variable
9715 …CV_Set(&cv_cam_height, va("%f", FIXED_TO_FLOAT(cv_cam_saveheight[cv_useranalog[0].value][0].value)… in CV_UpdateCamDist()
9897 camheight = FixedMul((INT32)(atof(cv_cam_height.defaultvalue) * FRACUNIT), mo->scale); in P_MoveChaseCamera()
9906 camheight = FixedMul(cv_cam_height.value, mo->scale); in P_MoveChaseCamera()
H A Dp_mobj.c3700 fixed_t cam_height = cv_cam_height.value; in P_CameraThinker()