mirror of
https://github.com/yquake2/xatrix.git
synced 2024-11-10 06:42:22 +00:00
Merge pull request #44 from BjossiAlfreds/monsterframes
Monster frame handling improvements
This commit is contained in:
commit
42213ec796
1 changed files with 9 additions and 1 deletions
|
@ -685,11 +685,19 @@ M_MoveFrame(edict_t *self)
|
|||
(self->monsterinfo.nextframe >= move->firstframe) &&
|
||||
(self->monsterinfo.nextframe <= move->lastframe))
|
||||
{
|
||||
self->s.frame = self->monsterinfo.nextframe;
|
||||
if (self->s.frame != self->monsterinfo.nextframe)
|
||||
{
|
||||
self->s.frame = self->monsterinfo.nextframe;
|
||||
self->monsterinfo.aiflags &= ~AI_HOLD_FRAME;
|
||||
}
|
||||
|
||||
self->monsterinfo.nextframe = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* prevent nextframe from leaking into a future move */
|
||||
self->monsterinfo.nextframe = 0;
|
||||
|
||||
if (self->s.frame == move->lastframe)
|
||||
{
|
||||
if (move->endfunc)
|
||||
|
|
Loading…
Reference in a new issue