Example #1
0
 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);
 }
Example #2
0
 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);
         }
     }
 }
Example #3
0
 public override void GiveEndEffect()
 {
     ParticleEndBullet particleEndBullet = new ParticleEndBullet(this.StageData, this.OriginalPosition, this.ColorType, this.SizeValue);
 }