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