Exemplo n.º 1
0
 public DKSequence MoveBy(float time, Vector3 direction, params TweenParams[] par)
 {
     SequenceMaster.MoveBy(time, direction);
     SequenceMaster.ApplyParams(par);
     return(this);
 }
Exemplo n.º 2
0
 public DKSequence MoveByZ(float time, float shiftZ, params TweenParams[] par)
 {
     SequenceMaster.MoveBy(time, new Vector3(0, 0, shiftZ));
     SequenceMaster.ApplyParams(par);
     return(this);
 }
Exemplo n.º 3
0
 public DKSequence MoveBy(float time, float x, float y, float z, params TweenParams[] par)
 {
     SequenceMaster.MoveBy(time, new Vector3(x, y, z));
     SequenceMaster.ApplyParams(par);
     return(this);
 }