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