Reversing actor p4

This commit is contained in:
mohabhassan 2018-08-29 14:41:48 +02:00
parent 71de1bfad1
commit cb239c3c7f
25 changed files with 2190 additions and 299 deletions

View file

@ -42,8 +42,8 @@ void Actor::Begin_Idle
)
{
// FIXME: stub
STUB();
m_csMood = m_csIdleMood;
ClearPath();
}
void Actor::Think_Idle
@ -52,6 +52,11 @@ void Actor::Think_Idle
)
{
// FIXME: stub
STUB();
if (RequireThink())
{
UpdateEyeOrigin();
m_pszDebugState = "";
CheckForThinkStateTransition();
IdleThink();
}
}