All sprites added to CCNode are clumped in one point

89 Views Asked by At

I used Hearts1.CCPositionType = CCPositionTypeNormalized for my CCNode, Hearts1. For all sprites inside the node, I also used CCPositionTypeNormalized

None of my sprites seem to move around, they just stack on top of each other in the same point. Do I need to change the ContentSize of the node to match the viewSize?

1

There are 1 best solutions below

0
On
ScreenWidth = [[UIScreen mainScreen] bounds].size.width;
ScreenHeight = [[UIScreen mainScreen] bounds].size.height;
heart1.contentSize = CGSizeMake(ScreenWidth,ScreenHeight);

This prevents all the sprites from being clumped in one point.