mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 21:47:42 +00:00
Various imps
This commit is contained in:
@@ -4,8 +4,24 @@ namespace urde
|
||||
{
|
||||
|
||||
CScriptGenerator::CScriptGenerator(TUniqueId uid, const std::string& name, const CEntityInfo& info,
|
||||
u32, bool, const zeus::CVector3f&, bool, bool active, float, float)
|
||||
: CEntity(uid, info, active, name)
|
||||
u32 w1, bool b1, const zeus::CVector3f& vec1, bool b2, bool active, float minScale, float maxScale)
|
||||
: CEntity(uid, info, active, name),
|
||||
x34_(w1),
|
||||
x38_24_(b1),
|
||||
x38_25_(b2),
|
||||
x3c_(vec1),
|
||||
x48_minScale(minScale),
|
||||
x4c_maxScale(maxScale)
|
||||
{
|
||||
}
|
||||
|
||||
void CScriptGenerator::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr)
|
||||
{
|
||||
if (msg == EScriptObjectMessage::SetToZero)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
CEntity::AcceptScriptMsg(msg, objId, stateMgr);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user