diff --git a/src/core/graphics/Graphics.js b/src/core/graphics/Graphics.js index 130758c..ffe0009 100644 --- a/src/core/graphics/Graphics.js +++ b/src/core/graphics/Graphics.js @@ -724,9 +724,10 @@ this._spriteRect = new Sprite(Graphics._SPRITE_TEXTURE); this._spriteRect.tint = this.graphicsData[0].fillColor; + this._spriteRect.alpha = this.graphicsData[0].fillAlpha; } - this._spriteRect.worldAlpha = this.worldAlpha; + this._spriteRect.worldAlpha = this.worldAlpha * this._spriteRect.alpha; Graphics._SPRITE_TEXTURE._frame.width = rect.width; Graphics._SPRITE_TEXTURE._frame.height = rect.height;