mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-05 07:24:34 +00:00
Cutscene Camera Commands: POS
-> EYE
, FOCUS
-> LOOK_AT
(#993)
* Cutscene Camera Commands: `POS` -> `EYE`, `FOCUS` -> `LOOK_AT` * PR Suggestion: Update names with REL_TO * Use newer name in macros, address PR comment
This commit is contained in:
parent
b3d5f549e7
commit
1ac6e42b56
26 changed files with 1871 additions and 1863 deletions
|
@ -1849,16 +1849,16 @@ void Cutscene_ProcessCommands(GlobalContext* globalCtx, CutsceneContext* csCtx,
|
|||
cutscenePtr += 0x30;
|
||||
}
|
||||
break;
|
||||
case CS_CMD_CAMERA_POS:
|
||||
case CS_CMD_CAM_EYE:
|
||||
cutscenePtr += Cutscene_Command_CameraPositions(globalCtx, csCtx, (void*)cutscenePtr, 0);
|
||||
break;
|
||||
case CS_CMD_CAMERA_POS_PLAYER:
|
||||
case CS_CMD_CAM_EYE_REL_TO_PLAYER:
|
||||
cutscenePtr += Cutscene_Command_CameraPositions(globalCtx, csCtx, (void*)cutscenePtr, 1);
|
||||
break;
|
||||
case CS_CMD_CAMERA_FOCUS:
|
||||
case CS_CMD_CAM_AT:
|
||||
cutscenePtr += Cutscene_Command_CameraFocus(globalCtx, csCtx, (void*)cutscenePtr, 0);
|
||||
break;
|
||||
case CS_CMD_CAMERA_FOCUS_PLAYER:
|
||||
case CS_CMD_CAM_AT_REL_TO_PLAYER:
|
||||
cutscenePtr += Cutscene_Command_CameraFocus(globalCtx, csCtx, (void*)cutscenePtr, 1);
|
||||
break;
|
||||
case CS_CMD_07:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue