This commit is contained in:
Daveo 2001-06-19 21:19:01 +00:00
parent 662cc8b305
commit abd972b38a
17 changed files with 341 additions and 426 deletions

View file

@ -19,7 +19,7 @@
#include "utils\utils.h"
#endif
#include "fx\fxattachAnim.h"
#include "fx\fxgeyser.h"
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
const int DodgyFXOffset=16;
@ -30,11 +30,12 @@ void CNpcGeyserPlatform::postInit()
m_isFiring = false;
m_state = GEYSER_READY;
// Add fountain stuff
// Add GEYSER stuff
DVECTOR Pos=getPos();
Pos.vy+=DodgyFXOffset;
CThing *FX=CFX::Create(CFX::FX_TYPE_FOUNTAIN_OIL,Pos);
addChild(FX);
CThing *FX=CFX::Create(CFX::FX_TYPE_GEYSER_OIL,Pos);
addChild(FX);
}