mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 16:58:29 +00:00
43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
// ReSharper disable AutoPropertyCanBeMadeGetOnly.Global
|
|
// ReSharper disable MemberCanBePrivate.Global
|
|
|
|
using CUE.NET.Devices.Generic;
|
|
|
|
namespace CUE.NET.Gradients
|
|
{
|
|
/// <summary>
|
|
/// Represents a stop on a gradient.
|
|
/// </summary>
|
|
public class GradientStop
|
|
{
|
|
#region Properties & Fields
|
|
|
|
/// <summary>
|
|
/// Gets or sets the percentage offset to place this stop. This should be inside the range of [0..1] but it's not necessary.
|
|
/// </summary>
|
|
public float Offset { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the color of the stop.
|
|
/// </summary>
|
|
public CorsairColor Color { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="GradientStop"/> class.
|
|
/// </summary>
|
|
/// <param name="offset">The percentage offset to place this stop.</param>
|
|
/// <param name="color">The color of the stop.</param>
|
|
public GradientStop(float offset, CorsairColor color)
|
|
{
|
|
this.Offset = offset;
|
|
this.Color = color;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|