How can i make the 'poo' appear in a certain place when the screen is touched?

user3394385

I am making a game in sprite kit, for the iphone and i am a noob haha. Anyway, this is the code i have so far but instead of the poo appearing where i touch i want it to appear in a place of my choice.

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
 /* Called when a touch begins */

for (UITouch *touch in touches) {
    CGPoint location = [touch locationInNode:self];

    SKSpriteNode *poo = [SKSpriteNode spriteNodeWithImageNamed:@"poo"];

    poo.position = location;

    poo.zPosition = 5;

    [poo setScale:0.2f];


    //next line adds gravity to the poo.
    poo.physicsBody = [SKPhysicsBody bodyWithCircleOfRadius:poo.size.width/2];

    [self addChild:poo];
}

}

Rafa de King

Just create a CGPoint with a desired location and set it as a position:

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event 
{
    CGPoint yourLocationOfChoice = CGPointMake(200.0f, 200.0f);

    SKSpriteNode *poo = [SKSpriteNode spriteNodeWithImageNamed:@"poo"];

    poo.position = yourLocationOfChoice;

    ...
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can i make the 'poo' appear in a certain place when the screen is touched?

From Dev

When the screen is touched, how do I make the game over?

From Dev

When I try to type something, the screen keyboard always appears. How can I make it not appear?

From Dev

How can I make my navbar appear at a certain section?

From Dev

How can I make an element appear (for instance a tick) when a certain amount of characters have been typed into an input field?

From Dev

How to Make Certain Phrases Appear on One Line Regardless of Screen Size

From Java

How to make the application screen appear when the screen is opened in Flutter

From Dev

How can I make the login screen appear instead of logging me in automatically?

From Dev

How can I make each word in a read-only textview touchable so that a pop-up appears when touched?

From Dev

make uipickerview appear between cells when touched cell

From Dev

How can I make this form break/go to another row in a certain place for phones in twitter bootstrap?

From Dev

How to make text appear when you choose a certain option

From Dev

How to make textbox appear when certain buttons are pressed in Javascript?

From Dev

php How can I replace a character in a string (only) when it is in a certain place?

From Dev

How do I make an element appear in the center of a screen from a link?

From Dev

How can I make a window appear on top of another window, without closing when I click the second?

From Dev

How can I make stars appear when I type sudo password?

From Dev

How can I make an HTML element clickable only at certain screen sizes

From Dev

How do I make something happen when a UIImageView hits certain points on the screen?

From Dev

how to make hint disappear when edittext is touched?

From Dev

Swift Sprite-Kit: How do I increase my game's score when screen is touched?

From Dev

How can i make div content appear with animation when clicking a button that injects HTML?

From Dev

How can I make the vjs-big-play-button appear when the video is paused?

From Dev

How can i make a custom made textbox appear when hovering over a button in wpf

From Dev

How can I make a date field appear when a checkbox is unchecked in MVC?

From Dev

How can I make text appear when hovering a picture that has already the hovering for transform?

From Dev

How can I make PDFs appear life-size when displayed at 100%?

From Dev

When clicked on button, how can i make the returned message appear on the same page without other code?

From Dev

Using GNOME Paper theme: how do I make my dock appear when hovering on the left side of my screen?

Related Related

  1. 1

    How can i make the 'poo' appear in a certain place when the screen is touched?

  2. 2

    When the screen is touched, how do I make the game over?

  3. 3

    When I try to type something, the screen keyboard always appears. How can I make it not appear?

  4. 4

    How can I make my navbar appear at a certain section?

  5. 5

    How can I make an element appear (for instance a tick) when a certain amount of characters have been typed into an input field?

  6. 6

    How to Make Certain Phrases Appear on One Line Regardless of Screen Size

  7. 7

    How to make the application screen appear when the screen is opened in Flutter

  8. 8

    How can I make the login screen appear instead of logging me in automatically?

  9. 9

    How can I make each word in a read-only textview touchable so that a pop-up appears when touched?

  10. 10

    make uipickerview appear between cells when touched cell

  11. 11

    How can I make this form break/go to another row in a certain place for phones in twitter bootstrap?

  12. 12

    How to make text appear when you choose a certain option

  13. 13

    How to make textbox appear when certain buttons are pressed in Javascript?

  14. 14

    php How can I replace a character in a string (only) when it is in a certain place?

  15. 15

    How do I make an element appear in the center of a screen from a link?

  16. 16

    How can I make a window appear on top of another window, without closing when I click the second?

  17. 17

    How can I make stars appear when I type sudo password?

  18. 18

    How can I make an HTML element clickable only at certain screen sizes

  19. 19

    How do I make something happen when a UIImageView hits certain points on the screen?

  20. 20

    how to make hint disappear when edittext is touched?

  21. 21

    Swift Sprite-Kit: How do I increase my game's score when screen is touched?

  22. 22

    How can i make div content appear with animation when clicking a button that injects HTML?

  23. 23

    How can I make the vjs-big-play-button appear when the video is paused?

  24. 24

    How can i make a custom made textbox appear when hovering over a button in wpf

  25. 25

    How can I make a date field appear when a checkbox is unchecked in MVC?

  26. 26

    How can I make text appear when hovering a picture that has already the hovering for transform?

  27. 27

    How can I make PDFs appear life-size when displayed at 100%?

  28. 28

    When clicked on button, how can i make the returned message appear on the same page without other code?

  29. 29

    Using GNOME Paper theme: how do I make my dock appear when hovering on the left side of my screen?

HotTag

Archive