PDA

View Full Version : cutscene skipping?


Hellsingmod Timmy
12-11-2004, 09:13 PM
is there a command that i can skip my cutscenes?
i cant skip them via spacebar:(
i use this commands for my cutscenes:
CAMERA:
player->C_Hide(false);
MaxPayne_GameMode->GM_SetPlayerControls(true);
MaxPayne_GameMode->GM_EnableWideScreen(false,0.2);
this->CAM_DetachFromDO();

TRIGGER:
player->C_Hide(true);
MaxPayne_GameMode->GM_SetPlayerControls(false);
::Mesh::cam->CAM_AttachToDO(false);
MaxPayne_GameMode->GM_EnableWideScreen(true,0.4);
::mesh::cam->FSM_StartTimer(timer_0);

MrUniq
12-12-2004, 02:16 AM
i think having false for that CAM means that the player can't abort the cutscene.

CAM_AttachToDO skippable (bool)

Corwin
12-12-2004, 04:33 AM
Yup, you're right MrUniq, put 0 or false as parameter of the CAM_AttachToDo (); message.