Wait states ported (scripted animations)

This commit is contained in:
Sergeanur
2021-05-18 14:06:40 +03:00
parent 0c3ee871f4
commit c7821635fd
6 changed files with 546 additions and 8 deletions

View File

@ -230,3 +230,9 @@ CAnimBlendAssociation::UpdateBlend(float timeDelta)
return true;
}
void
CAnimBlendAssociation::Remove()
{
delete this;
}

View File

@ -81,6 +81,7 @@ public:
void UpdateTimeStep(float timeDelta, float relSpeed);
bool UpdateTime(float timeDelta, float relSpeed);
bool UpdateBlend(float timeDelta);
void Remove();
void SetRun(void) { flags |= ASSOC_RUNNING; }