IETS - v0.5.1
    Preparing search index...

    Function EndCutSceneMode

    BG2 barrel re-exports.

    Generated by ts-update. Do not edit manually.

    Uses named re-exports (not export *) so esbuild can statically resolve each binding without falling back to runtime __reExport helpers for externalized .d.ts modules.

    • This action ends a cutscene, and restores the GUI and player control. The example script is from ar0800.bcs.

       IF
         GlobalGT("BodhiJob","GLOBAL",0)
         Global("Movie02","GLOBAL",0)
       THEN
         RESPONSE #100
           ClearAllActions()
           SetGlobal("Movie02","GLOBAL",1)
           StartCutSceneMode()
           FadeToColor([30.0],0)
           Wait(2)
           EndCutSceneMode()
           TextScreen("SCENE04")
           SmallWait(1)
           StartCutSceneMode()
           StartCutScene("Movie02a")
       END
      

      Returns Action