I have some problem with Anchor point..

i have a sprite and i need to calculate the anchor point for this sprite around the screen center.

How can i calculate the anchor point?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can access the anchor point values using:

mySprite.anchorPoint.x 

and

mySprite.anchorPoint.y

These are both floating point values so be aware of that.

EDIT

To set them you just do:

mySprite.anchorPoint = ccp(1.0f, 1.0f);

An anchor point of (1.0, 1.0) would be the upper right corner of your image, whereas the original anchor point is in the middle and therefore, (0.5, 0.5). To try and solidify the anchor point for the bottom left would be (0.0, 0.0). You can get any other anchor point within the image by understanding these.

link|improve this answer
I do not need to read them !! i need to calculate them and set them ! – cocos2d man Aug 12 '11 at 8:57
@cocos2d man... Check the Edits – ScottPetit Aug 12 '11 at 11:25
feedback

Your Answer

 
or
required, but never shown

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