a real quick question here. It seems like super init has it's own way anchoring things around. Here is the example. Below i have super init with sprite frame "image1", and i have "image2" within the init. The problem is, these 2 images will not over-lapse each other as you would thought, it appears that the anchor point of init 'image1' is 0,0 and 0.5,0.5 for "image2" so the lower left edge of "image1" would be over-lapsing with the center of "image2".
-(id) initWithSpriteImage
{
if ((self = [super initWithSpriteFrameName:@"image1.png"]))
{
CCSprite *image2=[CCSprite spriteWithSpriteFrameName:@"image2.png"];
}
return self;
}
any idea how i can solve this beside removing the init sprite?