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 trialRodrigo Larin
1,864 PointsDoes 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
42,016 PointsI 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];
Rodrigo Larin
1,864 PointsRodrigo Larin
1,864 PointsThanks for the response, I tried it without success.
Michael Blazek
162 PointsMichael Blazek
162 PointsRodrigo Post your code that is not working because Stone's suggestion should work.