I have a TileMap with a few sprites inside. How does one go about retrieving the child's position inside the parent?
The tilemap is positioned at (0,0)
Sprite1 is positioned at (100,100) inside the tilemap.
int i = [map getChildByTag:kSprite1].position.x;
NSLog(@"%i",i);
This would always return 0. Hopefully someone can enlighten me. =(