示例#1
0
 public HOTSequence Prepend(HOTweenHelper tween)
 {
     sequenceOps.Add(new SequenceOp(SequenceOp.OpType.Prepend, tween.Start()));
     return(this);
 }
示例#2
0
 public HOTSequence Insert(float time, HOTweenHelper tween)
 {
     sequenceOps.Add(new SequenceOp(time, tween.Start()));
     return(this);
 }