mirror of https://github.com/AxioDL/metaforce.git
26 lines
755 B
C++
26 lines
755 B
C++
#include "CScriptCameraHintTrigger.hpp"
|
|
#include "CActorParameters.hpp"
|
|
#include "TCastTo.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
CScriptCameraHintTrigger::CScriptCameraHintTrigger(TUniqueId uid, bool active, const std::string& name,
|
|
const CEntityInfo& info, const zeus::CVector3f& scale,
|
|
const zeus::CTransform& xf, bool b2, bool b3)
|
|
: CActor(uid, active, name, info, xf, CModelData::CModelDataNull(), CMaterialList(EMaterialTypes::Trigger),
|
|
CActorParameters::None(), kInvalidUniqueId)
|
|
, xe8_obb(xf, scale)
|
|
, x124_scale(scale)
|
|
{
|
|
x130_24_ = b2;
|
|
x130_25_ = b3;
|
|
}
|
|
|
|
void CScriptCameraHintTrigger::Accept(IVisitor& visitor)
|
|
{
|
|
visitor.Visit(this);
|
|
}
|
|
|
|
}
|