mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 04:27:42 +00:00
Implement CScriptCameraBlurKeyframe and CScriptCameraFilterKeyframe
This commit is contained in:
@@ -2,14 +2,24 @@
|
||||
#define __URDE_CSCRIPTCAMERABLURKEYFRAME__
|
||||
|
||||
#include "CEntity.hpp"
|
||||
#include "Camera/CCameraFilter.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
class CScriptCameraBlurKeyframe : public CEntity
|
||||
{
|
||||
EBlurType x34_type;
|
||||
float x38_amount;
|
||||
u32 x3c_;
|
||||
float x40_timeIn;
|
||||
float x44_timeOut;
|
||||
public:
|
||||
CScriptCameraBlurKeyframe(TUniqueId, const std::string&, const CEntityInfo&, u32, float, u32, float, float, bool);
|
||||
CScriptCameraBlurKeyframe(TUniqueId uid, const std::string& name,
|
||||
const CEntityInfo& info, EBlurType type,
|
||||
float amount, u32 unk, float timeIn,
|
||||
float timeOut, bool active);
|
||||
|
||||
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr);
|
||||
void Accept(IVisitor& visitor);
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user