Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some problem with correct anchor point adjustment. First thing first, I have mainlayer and sublayer, what I want to do is set some point as anchor point of that sublayer then set sublayer position at (0,0). So, in my opinion sub layer should move to (0,0) position in mainlayer.

But my below code is not working as I expected.

[sublayer setAnchorPoint:ccp(x/sublayer.contentSize.width,y/sublayer.contentSize.height)];
[sublayer setPosition:ccp(0,0)];
share|improve this question

1 Answer

up vote 1 down vote accepted

First of all, CCLayer by default is not relatieve to anchor point, so it will ignore any changes on it. You can enable it by

[layer setIsRelatieveAnchorPoint: YES];

The second - you should not change anchor point if you don't fully understand how it works.

share|improve this answer
Thanks, what's more for v2.x that function goes to node.ignoreAnchorPointForPosition = NO; – BW4 Nov 14 '12 at 18:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.