From b7b38e6802358e99701b537389025e1da104a596 Mon Sep 17 00:00:00 2001 From: caryliu Date: Thu, 11 Jul 2019 21:13:07 +0800 Subject: [PATCH] Fix bugs in Program and Renderer. --- cocos2d/core/CCNode.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cocos2d/core/CCNode.js b/cocos2d/core/CCNode.js index 895f4673b39..ea6c73e98e1 100644 --- a/cocos2d/core/CCNode.js +++ b/cocos2d/core/CCNode.js @@ -1526,6 +1526,9 @@ let NodeDefines = { this._proxy.setName(this._name); this._proxy.updateParent(); this._proxy.updateOpacity(); + this._proxy.update3DNode(); + this._proxy.updateZOrder(); + this._proxy.updateCullingMask(); } },