mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
22 lines
551 B
C++
22 lines
551 B
C++
#ifndef _SLDRCAMERABLURKEYFRAME
|
|
#define _SLDRCAMERABLURKEYFRAME
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
struct SLdrCameraBlurKeyframe {
|
|
SLdrCameraBlurKeyframe();
|
|
~SLdrCameraBlurKeyframe();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
int blurType;
|
|
float blurRadius;
|
|
int whichFilterGroup;
|
|
float interpolateInTime;
|
|
float interpolateOutTime;
|
|
};
|
|
|
|
void LoadTypedefSLdrCameraBlurKeyframe(SLdrCameraBlurKeyframe&, CInputStream&);
|
|
|
|
#endif // _SLDRCAMERABLURKEYFRAME
|