How do I loop while "Touch - On hold gesture"?

0 favourites
  • 6 posts
From the Asset Store
SynthWave Loop Pack includes 68 seamless loops, founded on 11 original melodies.
  • Hello everyone, my name is Brenda and I'm from Argentina.

    I'm new using Construct 2 and I find it fascinating!

    However I run into a problem when I tried to use the while loop for my mobile game.

    What I'm trying to accomplish is to move my sprite to the left or to the right while the user is touching the screen.

    So for example, if he touches the left side of the screen, then the sprite would move to the other side.

    And it has to stop when the user stops touching the screen.

    Here's what I've got so far:

    It looks very logical to me but I'm clearly missing something.

    When I run my project, everytime I touch the screen, the game freezes and it won't let me do anything else.

    Could you help me to find what I'm doing wrong?

    Thanks in advance (sorry for my english)

    Brenda

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • You have to use

    Touch Is in Touch

    Simple example moving only on X

    So Touch| is in touch

    system| touch.x < Layoutwidth/2 Sprite|Set X to Self.x-2

    And do same for opposite side but inversed

    So Touch| is in touch

    system| touch.x > Layoutwidth/2 Sprite|Set X to Self.x+2

  • Thanks DUTOIT!

    If I do it that way, it works perfect as you said!

    But, what I want to do is to gradually accelerate the sprite while the user is touching the screen.

    That's why I was using the While loop, to increment the acceleration on every cycle

  • touch.x<layoutwidth/2 is a loop so

    Put your custommovement accelerate 300 in, and put self.x-2 and self.x+2 respectively.

    It loops as long as that condition isn't met.

    See

  • You could do that with a variable what increase or decrease.

    And I would use ViewportRight not LayoutWidth.

    Global number acceleration =0
    
    Touch| is in touch  System| add 0.1 from acceleration 
        system| touch.x < ViewportRight(0)/2  Sprite|Set X to Self.x-acceleration
        system| touch.x > ViewportRight(0)/2  Sprite|Set X to Self.x+acceleration
                                          
    Touch| on any touch end   System|set acceleration to 0
    [/code:2u4h1u94]
  • Thanks DUTOIT, it worked really good!

    Thank you also, Asmodean! I'll try what you said too.

    Brenda

Jump to:
Active Users
There are 1 visitors browsing this topic (0 users and 1 guests)