Ejemplo n.º 1
0
 public float3 Step(float3 target)
 {
     Current = CdsTween.Step(Current, target, ref _velocity, Speed);
     return(Current);
 }
Ejemplo n.º 2
0
 public quaternion Step(quaternion target)
 {
     Current = CdsTween.Step(Current, target, ref _velocity, Speed);
     return(Current);
 }