2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRENVFXDENSITYCONTROLLER
|
|
|
|
|
#define _SLDRENVFXDENSITYCONTROLLER
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrEnvFxDensityController {
|
|
|
|
|
SLdrEnvFxDensityController();
|
|
|
|
|
~SLdrEnvFxDensityController();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
2023-08-09 23:45:58 +03:00
|
|
|
float density;
|
2023-08-11 22:35:54 +03:00
|
|
|
int fadeSpeed;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrEnvFxDensityController(SLdrEnvFxDensityController&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRENVFXDENSITYCONTROLLER
|