Construct 2 - One trick Everyday #3 - Detect swipe/control direction

You're viewing a single comment in a conversation. View all the comments
  • 2 Comments

  • Order by
  • Thanks a lot!

    One note is that in C3 I found it uses negative angles, so the angle check becomes:

    Up: -110 to -70

    Right: -20 to 20

    Down: 70 to 110

    Left: 160 to 200 (and for some reason, it could be negative sometimes, so I add an OR block and: -200 to -160)

    Thanks again!