2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRSTREAMEDMOVIE
|
|
|
|
|
#define _SLDRSTREAMEDMOVIE
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
#include "rstl/string.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrStreamedMovie {
|
|
|
|
|
SLdrStreamedMovie();
|
|
|
|
|
~SLdrStreamedMovie();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
|
|
|
|
rstl::string movieFile;
|
2023-08-09 23:45:58 +03:00
|
|
|
bool loop;
|
2023-08-11 22:35:54 +03:00
|
|
|
bool videoFilterEnabled;
|
2023-08-09 23:45:58 +03:00
|
|
|
int unknown;
|
|
|
|
|
int volume;
|
2023-08-11 22:35:54 +03:00
|
|
|
int volumeType;
|
|
|
|
|
float cacheLength;
|
|
|
|
|
float fadeOutTime;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrStreamedMovie(SLdrStreamedMovie&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRSTREAMEDMOVIE
|