ProxyMM-SkipIt icon

SkipIt

Various cutscene skip options

Last updated 7 hours ago
Total downloads 43
Total rating 1 
Categories Mods
Dependency string ProxyMM-SkipIt-0.0.5
Dependants 0 other packages depend on this package

README

SkipIt

Various cutscene skip options

Features

  • Skip One Point Cutscenes (Chests Spawning, Switch Pressed, Etc)
  • Skip Entrance Cutscenes
  • Skip Boss Introductions
  • Skip Intro or First Cycle
  • Skip Song Playback
  • Skip To File Select
  • Skip Mask Transformation
  • More planned

API

Because this patches commonly patched functions (CutsceneManager_Start & CutsceneManager_Queue), we are also exposing events so that other mods may make use of this pattern without having to also patch them.

RECOMP_CALLBACK("ProxyMM_SkipIt", SkipIt_ShouldCutsceneStart)
void MyMod_ShouldCutsceneStart(s16 csId, Actor* actor, bool* should) {
    if (csId == 1) {
        *should = false;
    }
}

RECOMP_CALLBACK("ProxyMM_SkipIt", SkipIt_ShouldCutsceneQueue)
void MyMod_ShouldCutsceneQueue(s16 csId, bool* should) {
    if (csId == 1) {
        *should = false;
    }
}