示例#1
0
 public void SSActionEvent(SSAction source)
 {
     source.destroy = false;
     this.start++;
     if (this.start >= this.Actions.Count)
     {
         this.start = 0;
         if (this.repeat > 0)
         {
             this.repeat--;
         }
         if (this.repeat == 0)
         {
             this.destroy = true;
             this.callback.SSActionEvent(this);
         }
     }
 }
示例#2
0
 public void SSActionEvent(SSAction source)
 {
 }