summaryrefslogtreecommitdiffstats
path: root/src/animation/CutsceneMgr.h
diff options
context:
space:
mode:
authoreray orçunus <erayorcunus@gmail.com>2020-06-16 00:38:26 +0200
committereray orçunus <erayorcunus@gmail.com>2020-06-16 19:35:09 +0200
commitc6bb1f5d0d70f24f02fd5967f2732c7e8be3781a (patch)
tree891b2defe753ccf5cd698ad54585a141fe37132b /src/animation/CutsceneMgr.h
parentBike anim. fix (diff)
downloadre3-c6bb1f5d0d70f24f02fd5967f2732c7e8be3781a.tar
re3-c6bb1f5d0d70f24f02fd5967f2732c7e8be3781a.tar.gz
re3-c6bb1f5d0d70f24f02fd5967f2732c7e8be3781a.tar.bz2
re3-c6bb1f5d0d70f24f02fd5967f2732c7e8be3781a.tar.lz
re3-c6bb1f5d0d70f24f02fd5967f2732c7e8be3781a.tar.xz
re3-c6bb1f5d0d70f24f02fd5967f2732c7e8be3781a.tar.zst
re3-c6bb1f5d0d70f24f02fd5967f2732c7e8be3781a.zip
Diffstat (limited to 'src/animation/CutsceneMgr.h')
-rw-r--r--src/animation/CutsceneMgr.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/animation/CutsceneMgr.h b/src/animation/CutsceneMgr.h
index 18eff0e5..97093fb1 100644
--- a/src/animation/CutsceneMgr.h
+++ b/src/animation/CutsceneMgr.h
@@ -21,6 +21,7 @@ class CCutsceneMgr
static CAnimBlendAssocGroup ms_cutsceneAssociations;
static CVector ms_cutsceneOffset;
static float ms_cutsceneTimer;
+ static bool ms_wasCutsceneSkipped;
static bool ms_cutsceneProcessing;
public:
static CDirectory *ms_pCutsceneDir;
@@ -30,6 +31,7 @@ public:
static bool IsRunning(void) { return ms_running; }
static bool HasLoaded(void) { return ms_loaded; }
static bool IsCutsceneProcessing(void) { return ms_cutsceneProcessing; }
+ static bool WasCutsceneSkipped(void) { return ms_wasCutsceneSkipped; }
static bool UseLodMultiplier(void) { return ms_useLodMultiplier; }
static CCutsceneObject* GetCutsceneObject(int id) { return ms_pCutsceneObjects[id]; }
static int GetCutsceneTimeInMilleseconds(void) { return 1000.0f * ms_cutsceneTimer; }
@@ -43,6 +45,7 @@ public:
static void FinishCutscene(void);
static void SetupCutsceneToStart(void);
static void SetCutsceneAnim(const char *animName, CObject *pObject);
+ static void SetCutsceneAnimToLoop(const char *animName);
static CCutsceneHead *AddCutsceneHead(CObject *pObject, int modelId);
static CCutsceneObject *CreateCutsceneObject(int modelId);
static void DeleteCutsceneData(void);