Home
last modified time | relevance | path

Searched refs:P_TryCameraMove (Results 1 – 3 of 3) sorted by relevance

/dports/games/SRB2/SRB2-SRB2_release_2.2.9/src/
H A Dp_local.h132 boolean P_TryCameraMove(fixed_t x, fixed_t y, camera_t *thiscam);
H A Dp_map.c2489 boolean P_TryCameraMove(fixed_t x, fixed_t y, camera_t *thiscam) in P_TryCameraMove() function
3533 retval = P_TryCameraMove(thiscam->x, thiscam->y + thiscam->momy, thiscam); in P_SlideCameraMove()
3537 P_TryCameraMove(thiscam->x + thiscam->momx, thiscam->y, thiscam); in P_SlideCameraMove()
3548 retval = P_TryCameraMove(thiscam->x + newx, thiscam->y + newy, thiscam); in P_SlideCameraMove()
3572 retval = P_TryCameraMove(thiscam->x + tmxmove, thiscam->y + tmymove, thiscam); in P_SlideCameraMove()
H A Dp_mobj.c3655 …if (!P_TryCameraMove(thiscam->x + thiscam->momx, thiscam->y + thiscam->momy, thiscam)) // Thanks f… in P_CameraThinker()