public DKSequence Loop()
 {
     SequenceMaster.Loop(-1, LoopType.Restart);
     return(this);
 }
 public DKSequence Loop(int count)
 {
     SequenceMaster.Loop(count, LoopType.Restart);
     return(this);
 }
 public DKSequence Loop(LoopType type)
 {
     SequenceMaster.Loop(-1, type);
     return(this);
 }
 public DKSequence Loop(int count, LoopType type)
 {
     SequenceMaster.Loop(count, type);
     return(this);
 }