| 104 | } |
| 105 | |
| 106 | static void reset_camera() |
| 107 | { |
| 108 | globals.camera.tgt_omat = xEntGetFrame(&(xEnt)globals.player.ent); |
| 109 | globals.camera.tgt_mat = globals.camera.tgt_omat; |
| 110 | |
| 111 | zCameraEnableInput(); |
| 112 | zCameraEnableTracking(CO_OOB); |
| 113 | xCameraDoCollisions(1, 6); |
| 114 | zCameraTweakGlobal_Init(); |
| 115 | } |
| 116 | |
| 117 | static void render_model(xModelInstance& model, const xVec3& loc, const xVec3& size, |
| 118 | const xVec3& ypr /*Yaw Pitch Roll*/) |
no test coverage detected