fix color picker (signal handler + alpha channel)

This commit is contained in:
nothingTVatYT
2023-10-15 21:43:15 +02:00
parent 2f3929efe0
commit d1b2b64cd1
2 changed files with 3 additions and 1 deletions

View File

@@ -73,6 +73,7 @@ Color32 ScreenUtilities::GetColorAt(const Float2& pos)
outputColor.R = color.red / 256;
outputColor.G = color.green / 256;
outputColor.B = color.blue / 256;
outputColor.A = 255;
return outputColor;
}