1
AnchorPointが「CCLayer」の配置に影響しないのはなぜですか?
AnchorPointを変更すると、CCLayerとCCNodeの動作に違いがあると思います。 私が言っていることを説明し、誰かに説明してください。 シナリオ: まずCCNode CCNode *node = ...; node.setContentSize(ccp(W,H)); // 1. node.setAnchorPoint(ccp(0,0)); node.setPosition(ccp(X,Y); // This line will move the node in a way that its (0,0)-point will be placed at (X,Y). // 2. node.setAnchorPoint(ccp(1,1)); node.setPosition(ccp(X,Y); // This line will move the node in a way that its (0,0)-point will be …