2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRGLOWBUG
|
|
|
|
|
#define _SLDRGLOWBUG
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Math/CVector3f.hpp"
|
|
|
|
|
#include "Kyoto/SObjectTag.hpp"
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrActorParameters.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrPatternedAITypedef.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrGlowbug {
|
|
|
|
|
SLdrGlowbug();
|
|
|
|
|
~SLdrGlowbug();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
2023-08-09 23:45:58 +03:00
|
|
|
SLdrPatternedAITypedef patterned;
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrActorParameters actorInformation;
|
|
|
|
|
CAssetId deathFlashEffect;
|
2023-08-09 23:45:58 +03:00
|
|
|
CAssetId part;
|
2023-08-11 22:35:54 +03:00
|
|
|
CAssetId attackEffect;
|
|
|
|
|
CAssetId attackTelegraphEffect;
|
|
|
|
|
CAssetId attackEchoEffect;
|
|
|
|
|
float attackDuration;
|
|
|
|
|
float attackTelegraphDuration;
|
|
|
|
|
CVector3f attackAimOffset;
|
|
|
|
|
int attackTelegraphSound;
|
|
|
|
|
int attackSound;
|
|
|
|
|
CAssetId scanModel;
|
|
|
|
|
bool isInLightWorld;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrGlowbug(SLdrGlowbug&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRGLOWBUG
|