2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-05-23 05:36:20 +00:00
|
|
|
|
2019-09-23 19:00:23 +00:00
|
|
|
#include <string_view>
|
|
|
|
|
|
|
|
#include "Runtime/GCNTypes.hpp"
|
|
|
|
#include "Runtime/Camera/CCameraFilter.hpp"
|
|
|
|
#include "Runtime/World/CEntity.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
|
|
|
|
2019-08-09 12:45:18 +00:00
|
|
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr) override;
|
|
|
|
void Accept(IVisitor& visitor) override;
|
2016-05-23 05:36:20 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|