From b83654665b6f0bd88fd153789cf5e23eaea9e148 Mon Sep 17 00:00:00 2001 From: kzhdev Date: Tue, 18 Feb 2014 09:42:49 -0600 Subject: [PATCH] apply opacity to cache --- src/Node.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Node.js b/src/Node.js index 3074e981..f5de3eb1 100644 --- a/src/Node.js +++ b/src/Node.js @@ -206,6 +206,7 @@ _drawCachedSceneCanvas: function(context) { context.save(); context._applyTransform(this); + context._applyOpacity(this); context.drawImage(this._getCachedSceneCanvas()._canvas, 0, 0); context.restore(); },