diff --git a/Illumilib/IllumilibLighting.cs b/Illumilib/IllumilibLighting.cs index d271a6f..89c9e72 100644 --- a/Illumilib/IllumilibLighting.cs +++ b/Illumilib/IllumilibLighting.cs @@ -72,10 +72,10 @@ namespace Illumilib { /// Sets the lighting for the specified to the given color. /// Only a single key can be specified at a time. /// - /// - /// - /// - /// + /// The key value to set the lighting for + /// The color's red value, between 0 and 1 + /// The color's green value, between 0 and 1 + /// The color's blue value, between 0 and 1 public static void SetKeyLighting(KeyboardKeys key, float r, float g, float b) { ForEach(s => s.SetKeyLighting(key, r, g, b)); }