This commit is contained in:
Charles 2001-07-05 21:50:02 +00:00
parent dec3ff76ef
commit fd97883718
7 changed files with 145 additions and 12 deletions

View file

@ -49,6 +49,7 @@
#include "gfx\otpos.h"
#include "fx\fx.h"
#include "fx\fxbaseanim.h"
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@ -405,7 +406,9 @@ void CProjectile::think(int _frames)
if ( m_movementType == PROJECTILE_MINE )
{
CFX::Create( CFX::FX_TYPE_EXPLODE, Pos );
CFX *newFX = CFX::Create( CFX::FX_TYPE_EXPLODE, Pos );
((CFXBaseAnim*)newFX)->SetScale(ONE*2);
CGameScene::setCameraShake(0,8);
}
}