2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRDYNAMICLIGHTSPOTLIGHT
|
|
|
|
|
#define _SLDRDYNAMICLIGHTSPOTLIGHT
|
|
|
|
|
|
2025-01-14 03:40:29 +02:00
|
|
|
#include "Kyoto/Math/CMayaSpline.hpp"
|
2023-08-09 23:45:58 +03:00
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrDynamicLightSpotlight {
|
|
|
|
|
SLdrDynamicLightSpotlight();
|
|
|
|
|
~SLdrDynamicLightSpotlight();
|
|
|
|
|
|
2025-01-14 03:40:29 +02:00
|
|
|
SLdrSpline spotlightAngle;
|
2023-08-11 22:35:54 +03:00
|
|
|
float spotlightAngleDuration;
|
|
|
|
|
bool spotlightAngleLoops;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrDynamicLightSpotlight(SLdrDynamicLightSpotlight&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRDYNAMICLIGHTSPOTLIGHT
|