Exemplo n.º 1
0
 public DKSequence Loop()
 {
     SequenceMaster.Loop(-1, LoopType.Restart);
     return(this);
 }
Exemplo n.º 2
0
 public DKSequence Loop(int count)
 {
     SequenceMaster.Loop(count, LoopType.Restart);
     return(this);
 }
Exemplo n.º 3
0
 public DKSequence Loop(LoopType type)
 {
     SequenceMaster.Loop(-1, type);
     return(this);
 }
Exemplo n.º 4
0
 public DKSequence Loop(int count, LoopType type)
 {
     SequenceMaster.Loop(count, type);
     return(this);
 }