From 582d6c7051a26305d2fc176ff9a864b69b446a63 Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 21 May 2022 15:34:17 -0400 Subject: [PATCH] Default alpha to be opaque --- NewHorizons/Utility/MColor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NewHorizons/Utility/MColor.cs b/NewHorizons/Utility/MColor.cs index fd77c349..1d7544ca 100644 --- a/NewHorizons/Utility/MColor.cs +++ b/NewHorizons/Utility/MColor.cs @@ -14,7 +14,7 @@ namespace NewHorizons.Utility public int R { get; } public int G { get; } public int B { get; } - public int A { get; } + public int A { get; } = 255; public Color32 ToColor32() => new Color32((byte)R, (byte)G, (byte)B, (byte)A);