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; }