Beispiel #1
0
 private void RemoveAllRemoveableEffects()
 {
     for (int i = 0; i < this._effectLs.Count; i++)
     {
         BaseMonoEffect effect = this._effectLs[i];
         if (effect.IsToBeRemove())
         {
             this.RemoveEffectByRuntimeID(effect.GetRuntimeID(), i);
             i--;
         }
     }
 }