2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRPORTALTRANSITION
|
|
|
|
|
#define _SLDRPORTALTRANSITION
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Math/CVector3f.hpp"
|
|
|
|
|
#include "Kyoto/SObjectTag.hpp"
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrAnimationParameters.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrPortalTransition {
|
|
|
|
|
SLdrPortalTransition();
|
|
|
|
|
~SLdrPortalTransition();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
|
|
|
|
SLdrAnimationParameters animationInformation;
|
|
|
|
|
CVector3f playerScale;
|
2023-08-09 23:45:58 +03:00
|
|
|
int volume;
|
|
|
|
|
int pan;
|
|
|
|
|
CAssetId agsc_0xe08e2172;
|
|
|
|
|
CAssetId agsc_0xb3e6c4e3;
|
2023-08-11 22:35:54 +03:00
|
|
|
int startPortal;
|
|
|
|
|
int inPortal1;
|
|
|
|
|
int inPortal2;
|
2023-08-09 23:45:58 +03:00
|
|
|
int direction;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrPortalTransition(SLdrPortalTransition&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRPORTALTRANSITION
|