1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 16:58:29 +00:00

Fixed wrong region in RainbowGradient

This commit is contained in:
Darth Affe 2017-01-15 13:58:02 +01:00
parent 7ef07ed99d
commit 5e90779398

View File

@ -43,8 +43,6 @@ namespace CUE.NET.Gradients
#region Methods
#endregion
/// <summary>
/// Gets the color on the rainbow at the given offset.
/// </summary>
@ -58,5 +56,7 @@ namespace CUE.NET.Gradients
hue += 360;
return ColorHelper.ColorFromHSV(hue, 1f, 1f);
}
#endregion
}
}