2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRAIKEYFRAME
|
|
|
|
|
#define _SLDRAIKEYFRAME
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrAIKeyframe {
|
|
|
|
|
SLdrAIKeyframe();
|
|
|
|
|
~SLdrAIKeyframe();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
|
|
|
|
int animationIndex;
|
2023-08-09 23:45:58 +03:00
|
|
|
bool loop;
|
2023-08-11 22:35:54 +03:00
|
|
|
float loopDuration;
|
2023-08-09 23:45:58 +03:00
|
|
|
int unknown_0x58810503;
|
|
|
|
|
int unknown_0x6d62ef74;
|
2023-08-11 22:35:54 +03:00
|
|
|
float playbackRate;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrAIKeyframe(SLdrAIKeyframe&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRAIKEYFRAME
|