summaryrefslogtreecommitdiffstats
path: root/src/animation/CutsceneMgr.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-08-24 22:46:17 +0200
committerGitHub <noreply@github.com>2020-08-24 22:46:17 +0200
commit8e7989087d93ba51deeca8a2d49629de18d918eb (patch)
treec15b8220c0d69132e90cbd3189d0d37fa30f9f24 /src/animation/CutsceneMgr.h
parentFix (diff)
parentCompilation fix (diff)
downloadre3-8e7989087d93ba51deeca8a2d49629de18d918eb.tar
re3-8e7989087d93ba51deeca8a2d49629de18d918eb.tar.gz
re3-8e7989087d93ba51deeca8a2d49629de18d918eb.tar.bz2
re3-8e7989087d93ba51deeca8a2d49629de18d918eb.tar.lz
re3-8e7989087d93ba51deeca8a2d49629de18d918eb.tar.xz
re3-8e7989087d93ba51deeca8a2d49629de18d918eb.tar.zst
re3-8e7989087d93ba51deeca8a2d49629de18d918eb.zip
Diffstat (limited to 'src/animation/CutsceneMgr.h')
-rw-r--r--src/animation/CutsceneMgr.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/animation/CutsceneMgr.h b/src/animation/CutsceneMgr.h
index c3f86273..b4497b5b 100644
--- a/src/animation/CutsceneMgr.h
+++ b/src/animation/CutsceneMgr.h
@@ -17,15 +17,13 @@ class CCutsceneMgr
static bool ms_animLoaded;
static bool ms_useLodMultiplier;
- static bool ms_camLoaded;
static char ms_cutsceneName[CUTSCENENAMESIZE];
- static char ms_uncompressedAnims[8][32];
- static uint32 ms_numUncompressedAnims;
static CAnimBlendAssocGroup ms_cutsceneAssociations;
static CVector ms_cutsceneOffset;
static float ms_cutsceneTimer;
static bool ms_wasCutsceneSkipped;
static bool ms_cutsceneProcessing;
+ static bool ms_useCutsceneShadows;
public:
static CDirectory *ms_pCutsceneDir;
static uint32 ms_cutsceneLoadStatus;
@@ -54,4 +52,9 @@ public:
static void DeleteCutsceneData(void);
static void LoadAnimationUncompressed(char const*);
static void Update(void);
+
+ static void AttachObjectToParent(CObject *pObject, CEntity *pAttachTo);
+ static void AttachObjectToFrame(CObject *pObject, CEntity *pAttachTo, const char *frame);
+ static void AttachObjectToBone(CObject *pObject, CObject *pAttachTo, int frame);
+ static void RemoveEverythingFromTheWorldForTheBiggestFuckoffCutsceneEver();
};