2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRCAMERA
|
|
|
|
|
#define _SLDRCAMERA
|
|
|
|
|
|
2025-01-14 03:40:29 +02:00
|
|
|
#include "Kyoto/Math/CMayaSpline.hpp"
|
2023-08-09 23:45:58 +03:00
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrSplineType.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrCamera {
|
|
|
|
|
SLdrCamera();
|
|
|
|
|
~SLdrCamera();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
|
|
|
|
float animationTime;
|
2023-08-09 23:45:58 +03:00
|
|
|
int unknown_0x05c5fc6e;
|
|
|
|
|
int unknown_0xd4b29446;
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrSplineType motionSplineType;
|
|
|
|
|
SLdrSplineType targetSplineType;
|
2025-01-14 03:40:29 +02:00
|
|
|
SLdrSpline motionControlSpline;
|
|
|
|
|
SLdrSpline targetControlSpline;
|
|
|
|
|
SLdrSpline fovSpline;
|
|
|
|
|
SLdrSpline rollSpline;
|
|
|
|
|
SLdrSpline slowmoControlSpline;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrCamera(SLdrCamera&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRCAMERA
|