mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-14 16:20:34 +00:00
Wait states ported (scripted animations)
This commit is contained in:
parent
0c3ee871f4
commit
c7821635fd
6 changed files with 546 additions and 8 deletions
|
@ -230,3 +230,9 @@ CAnimBlendAssociation::UpdateBlend(float timeDelta)
|
|||
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
CAnimBlendAssociation::Remove()
|
||||
{
|
||||
delete this;
|
||||
}
|
||||
|
|
|
@ -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; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue