2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRSOUNDMODIFIER
|
|
|
|
|
#define _SLDRSOUNDMODIFIER
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrSoundModifier {
|
|
|
|
|
SLdrSoundModifier();
|
|
|
|
|
~SLdrSoundModifier();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
2023-08-09 23:45:58 +03:00
|
|
|
float time;
|
2023-08-11 22:35:54 +03:00
|
|
|
bool autoReset;
|
|
|
|
|
bool autoStart;
|
2023-08-09 23:45:58 +03:00
|
|
|
spline volume;
|
|
|
|
|
spline pan;
|
2023-08-11 22:35:54 +03:00
|
|
|
spline surroundPan;
|
2023-08-09 23:45:58 +03:00
|
|
|
spline pitch;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrSoundModifier(SLdrSoundModifier&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRSOUNDMODIFIER
|