Hey everyone,
I am building a game with requires zooming in and out. I have accomplished that but when I zoom in the bounding boxes of my sprites do not change even though the sprite becomes bigger when I zoom in. Could somebody please tell me how to resize bounding boxes. My basic scaling code is:
[self setScale:self.scale - fabsf(oldDist - dist)/100];
then
[self setScale:self.scale - fabsf(oldDist - dist)/100];
for the other direction.
Thanks