2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRRIFTPORTAL
|
|
|
|
|
#define _SLDRRIFTPORTAL
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/SObjectTag.hpp"
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrAnimationParameters.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrRiftPortal {
|
|
|
|
|
SLdrRiftPortal();
|
|
|
|
|
~SLdrRiftPortal();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
2023-08-09 23:45:58 +03:00
|
|
|
CAssetId model;
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrAnimationParameters animationInformation;
|
|
|
|
|
CAssetId backgroundModel;
|
|
|
|
|
SLdrAnimationParameters backgroundAnimation;
|
|
|
|
|
CAssetId incandescentModel;
|
|
|
|
|
SLdrAnimationParameters incandescentAnimation;
|
|
|
|
|
CAssetId lineModel;
|
|
|
|
|
SLdrAnimationParameters lineAnimation;
|
|
|
|
|
bool ripPortal;
|
|
|
|
|
int projectileAttraction;
|
|
|
|
|
float projectileBoxWidth;
|
|
|
|
|
float projectileAngle;
|
|
|
|
|
float projectileDestructionRadius;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrRiftPortal(SLdrRiftPortal&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRRIFTPORTAL
|