Ok, I asked a similar question yesterday but for some reason when I post a topic and set it to my favorites it's automatically a link back to the front of the forum??
Anyways, this is a simpler question, (where "cube.png" is a 16x16 square image)
Sprite *s = [Sprite spriteWithFile:@"cube.png"];
CGPoint prePos = [s convertToWorldSpace:CGPointZero];
[gTouchPiece setRotation:(float)[(CocosNode *)s rotation]+90];
CGPoint postPos = [s convertToWorldSpace:CGPointZero];
This will produce different values for prePos and postPos but the object is not moving and its anchor is in the middle?
Any help or suggestion as to how to adjust postPos would be a big help, thanks!