예제 #1
0
 public static Vector4 Vector4(Vector4 from, Vector4 to, float weight)
 {
     return(Interpolate.Vector4(InterpolateType.Standard, from, to, weight));
 }
예제 #2
0
 public static Quaternion Quaternion(Quaternion from, Quaternion to, float weight)
 {
     return(Interpolate.Quaternion(InterpolateType.Standard, from, to, weight));
 }
예제 #3
0
 public static Color Color(Color from, Color to, float weight)
 {
     return(Interpolate.Color(InterpolateType.Standard, from, to, weight));
 }