Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Build a Game with Sprite Kit Particle Systems and Keeping Score Finishing Touches

Does anybody advice me how to enable just one touch instead of multitouch for shooting the projectiles on this assigment

I have searched different ways of how to let use one touch instead of multi touch for shooting the fire balls, but i have not found anything

1 Answer

Stone Preston
Stone Preston
42,016 Points

I havent tested it but instead of looping over the touches try just getting one of them using the anyObject method of NSSet:

replace:

for (UITouch *touch in touches) {

            CGPoint position = [touch locationInNode:self];
            [self shootProjectileTowardsPosition:position];

        }

with

UITouch *touch = [touches anyObject];
 CGPoint position = [touch locationInNode:self];
[self shootProjectileTowardsPosition:position];

Thanks for the response, I tried it without success.

Rodrigo Post your code that is not working because Stone's suggestion should work.