Hi,
would you help me please.
What would be the best way to check if a Cutscene has been skipped? You use Esc to skip.
cheers
EDIT:
Just seen this by Khris so will try something with it:
function repeatedly_execute_always() {
if (Game.InSkippableCutscene && IsKeyPressed(eKeyEscape)) {
Display("You tried to skip.");
}
}
Are you are implementing manual skipping control?
Unless your cutscene is made in an unusual way, you might be using StartCutscene and EndCutscene to mark the begining and ending of cutscene.
In StartCutscene you define the key which skips the cutscene. In this case the cutscene will skip automatically, if the player hits the button.
Then, if at some point you want to know if cutscene is being skipped by player, use Game.SkippingCutscene.
function repeatedly_execute_always() {
if (Game.SkippingCutscene) {
// do something
}
}
Cheers Crimson,
all is under control (laugh)