2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRCAMERA
|
|
|
|
|
#define _SLDRCAMERA
|
|
|
|
|
|
|
|
|
|
#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;
|
|
|
|
|
spline motionControlSpline;
|
|
|
|
|
spline targetControlSpline;
|
|
|
|
|
spline fovSpline;
|
|
|
|
|
spline rollSpline;
|
|
|
|
|
spline slowmoControlSpline;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrCamera(SLdrCamera&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRCAMERA
|