mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-08 02:10:35 +00:00
RwCameraGetCurrentCamera
This commit is contained in:
parent
d71cbae9df
commit
02741dc64f
2 changed files with 4 additions and 10 deletions
|
@ -152,7 +152,7 @@ RwReal RwCameraGetNearClipPlane(const RwCamera *camera) { return camera->n
|
|||
RwReal RwCameraGetFarClipPlane(const RwCamera *camera) { return camera->farPlane; }
|
||||
RwCamera *RwCameraSetFogDistance(RwCamera *camera, RwReal fogDistance) { camera->fogPlane = fogDistance; return camera; }
|
||||
RwReal RwCameraGetFogDistance(const RwCamera *camera) { return camera->fogPlane; }
|
||||
RwCamera *RwCameraGetCurrentCamera(void);
|
||||
RwCamera *RwCameraGetCurrentCamera(void) { return rw::engine->currentCamera; }
|
||||
RwCameraProjection RwCameraGetProjection(const RwCamera *camera);
|
||||
const RwV2d *RwCameraGetViewWindow(const RwCamera *camera) { return &camera->viewWindow; }
|
||||
RwMatrix *RwCameraGetViewMatrix(RwCamera *camera) { return &camera->viewMatrix; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue