public override void GiveEndEffect() { for (int index = 0; index < this.LastPoints.Length; index += 8) { ParticleEndBullet particleEndBullet = new ParticleEndBullet(this.StageData, this.LastPoints[index], this.ColorType, this.SizeValue); } this.StageData.Particle3D.ParticleList.Remove((BaseParticle3D)this.PL); }
public override void GiveEndEffect() { for (int index = 0; index < this.LastPoints.Length; ++index) { if (index % 8 == 0) { ParticleEndBullet particleEndBullet = new ParticleEndBullet(this.StageData, this.LastPoints[index], this.ColorType, this.SizeValue); } } }
public override void GiveEndEffect() { ParticleEndBullet particleEndBullet = new ParticleEndBullet(this.StageData, this.OriginalPosition, this.ColorType, this.SizeValue); }