qstbak/Auspex/Auspex/AlphaBlendModes.cs
2026-08-17 20:25:32 +10:00

12 lines
675 B
C#

using System;
namespace Auspex;
public static class AlphaBlendModes
{
public static readonly string[] Names = new string[3] { "None", "Add", "Maximum" };
public static readonly string[] Tooltips = new string[3] { "Overlapping elements are not blended.\nWhatever is drawn last overwrites anything it overlaps.", "Overlapping elements are blended by adding their alpha values.\nThis makes it easier to see areas where elements overlap.", "Overlapping elements are blended using the most opaque alpha.\nThis makes it easier to see through overlapping areas." };
public static readonly AlphaBlendMode[] Values = (AlphaBlendMode[])Enum.GetValues(typeof(AlphaBlendMode));
}