mirror of
https://github.com/ppy/osu.git
synced 2025-01-27 02:32:59 +08:00
Remove unnecessary "in" keyword
This commit is contained in:
parent
24accdcab0
commit
76e5a40b8e
@ -42,7 +42,7 @@ namespace osu.Game.Utils
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Interpolates between two sRGB <see cref="Colour4"/>s directly in sRGB space.
|
/// Interpolates between two sRGB <see cref="Colour4"/>s directly in sRGB space.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static Colour4 InterpolateNonLinear<TEasing>(double time, Colour4 startColour, Colour4 endColour, double startTime, double endTime, in TEasing easing) where TEasing : IEasingFunction
|
public static Colour4 InterpolateNonLinear<TEasing>(double time, Colour4 startColour, Colour4 endColour, double startTime, double endTime, TEasing easing) where TEasing : IEasingFunction
|
||||||
{
|
{
|
||||||
if (startColour == endColour)
|
if (startColour == endColour)
|
||||||
return startColour;
|
return startColour;
|
||||||
|
Loading…
Reference in New Issue
Block a user