Performs a cubic interpolation between two vectors. Start vector. End vector. Value between 0 and 1 indicating the weight of . When the method completes, contains the cubic interpolation of the two vectors.
(ref Vector3 start, ref Vector3 end, float amount, out Vector3 result)
| 1175 | /// <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end" />.</param> |
| 1176 | /// <param name="result">When the method completes, contains the cubic interpolation of the two vectors.</param> |
| 1177 | public static void SmoothStep(ref Vector3 start, ref Vector3 end, float amount, out Vector3 result) |
| 1178 | { |
| 1179 | amount = Mathf.SmoothStep(amount); |
| 1180 | Lerp(ref start, ref end, amount, out result); |
| 1181 | } |
| 1182 | |
| 1183 | /// <summary> |
| 1184 | /// Performs a cubic interpolation between two vectors. |
nothing calls this directly
no test coverage detected