From 5699ead1c25d8985627a720c616a6dcb70ecfeb9 Mon Sep 17 00:00:00 2001 From: anti-corporate Date: Tue, 16 Jun 2026 00:32:14 -0400 Subject: [PATCH] Add alpha channel support in color addition parciallly --- engine/src/Color.js | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/src/Color.js b/engine/src/Color.js index 67ef4b9fd..08e470525 100644 --- a/engine/src/Color.js +++ b/engine/src/Color.js @@ -104,6 +104,7 @@ Wick.Color = class { newColor.r = this.r + color.r; newColor.g = this.g + color.g; newColor.b = this.b + color.b; + newColor.a = this.a + color.a; return newColor; }