mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-14 16:40:52 +00:00
- fix animate for some explosion FX.
This commit is contained in:
parent
230c1b9041
commit
b9eced0d11
1 changed files with 6 additions and 6 deletions
|
@ -73,6 +73,11 @@ class DukeExplosion2Bot : DukeExplosion2
|
|||
-TRIGGER_IFHITSECTOR;
|
||||
}
|
||||
|
||||
override bool animate(tspritetype t)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
|
@ -81,7 +86,7 @@ class DukeExplosion2Bot : DukeExplosion2
|
|||
//
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
class RedneckExplosion3 : DukeExplosion2
|
||||
class RedneckExplosion3 : DukeExplosion2Bot
|
||||
{
|
||||
default
|
||||
{
|
||||
|
@ -93,11 +98,6 @@ class RedneckExplosion3 : DukeExplosion2
|
|||
Super.Initialize(spawner);
|
||||
self.scale = (2, 2);
|
||||
}
|
||||
|
||||
override bool animate(tspritetype t)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue