We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c06801 commit 10356b6Copy full SHA for 10356b6
extensions/cocostudio/armature/CCArmature.js
@@ -41,7 +41,6 @@ ccs.Armature = ccs.Node.extend(/** @lends ccs.Armature# */{
41
animation: null,
42
armatureData: null,
43
batchNode: null,
44
- _textureAtlas: null,
45
_parentBone: null,
46
_boneDic: null,
47
_topBoneList: null,
@@ -70,6 +69,8 @@ ccs.Armature = ccs.Node.extend(/** @lends ccs.Armature# */{
70
69
this._armatureTransformDirty = true;
71
this._blendFunc = {src: cc.BLEND_SRC, dst: cc.BLEND_DST};
72
name && ccs.Armature.prototype.init.call(this, name, parentBone);
+ // Hack way to avoid RendererWebGL from skipping Armature
73
+ this._texture = {};
74
},
75
76
/**
0 commit comments