2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-05-23 05:36:20 +00:00
|
|
|
|
|
|
|
#include "CEntity.hpp"
|
2017-06-01 21:13:19 +00:00
|
|
|
#include "Camera/CCameraFilter.hpp"
|
2016-05-23 05:36:20 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
|
|
|
class CScriptCameraBlurKeyframe : public CEntity {
|
|
|
|
EBlurType x34_type;
|
|
|
|
float x38_amount;
|
|
|
|
u32 x3c_;
|
|
|
|
float x40_timeIn;
|
|
|
|
float x44_timeOut;
|
|
|
|
|
2016-05-23 05:36:20 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CScriptCameraBlurKeyframe(TUniqueId uid, std::string_view name, const CEntityInfo& info, EBlurType type, float amount,
|
|
|
|
u32 unk, float timeIn, float timeOut, bool active);
|
2017-01-15 03:07:01 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr);
|
|
|
|
void Accept(IVisitor& visitor);
|
2016-05-23 05:36:20 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|