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 118936c commit a38af81Copy full SHA for a38af81
cocos2d-ui/CCBReader/CCBReader.m
@@ -883,7 +883,8 @@ - (CCNode*) readNodeGraphParent:(CCNode*)parent
883
embeddedNode.positionType = ccbFileNode.positionType;
884
//embeddedNode.anchorPoint = ccbFileNode.anchorPoint;
885
embeddedNode.rotation = ccbFileNode.rotation;
886
- embeddedNode.scale = ccbFileNode.scale;
+ embeddedNode.scaleX = ccbFileNode.scaleX;
887
+ embeddedNode.scaleY = ccbFileNode.scaleY;
888
embeddedNode.name = ccbFileNode.name;
889
embeddedNode.visible = YES;
890
//embeddedNode.ignoreAnchorPointForPosition = ccbFileNode.ignoreAnchorPointForPosition;
0 commit comments