2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRACTORKEYFRAME
|
|
|
|
|
#define _SLDRACTORKEYFRAME
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrActorKeyframe {
|
|
|
|
|
SLdrActorKeyframe();
|
|
|
|
|
~SLdrActorKeyframe();
|
|
|
|
|
|
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;
|
2023-08-11 22:35:54 +03:00
|
|
|
float playbackRate;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrActorKeyframe(SLdrActorKeyframe&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRACTORKEYFRAME
|