1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

explicitly identify out variables, removed debugging temp variable

This commit is contained in:
Diogo Trindade 2020-10-05 21:49:15 +01:00
parent b0928faccc
commit dd1d9fe6fe

View File

@ -15,13 +15,11 @@ namespace Artemis.Core.DefaultTypes
public override object Apply(object currentValue, object parameterValue)
{
((SKColor) currentValue).ToHsl(out var h, out var s, out var l);
((SKColor) currentValue).ToHsl(out float h, out float s, out float l);
h += (float)parameterValue;
var a = SKColor.FromHsl(h % 360, s, l);
return a;
return SKColor.FromHsl(h % 360, s, l);
}
}
}