mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 05:53:10 +08:00
Remove unnecessary "in" keyword
This commit is contained in:
parent
24accdcab0
commit
76e5a40b8e
@ -42,7 +42,7 @@ namespace osu.Game.Utils
|
||||
/// <summary>
|
||||
/// Interpolates between two sRGB <see cref="Colour4"/>s directly in sRGB space.
|
||||
/// </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)
|
||||
return startColour;
|
||||
|
Loading…
Reference in New Issue
Block a user