Gestures

Unfortunately this is deprecated in the current version of the Windows build and will not work…

To get the gesture information, the easiest way is to print the info in the console.

frame.gestures.forEach(function(gesture, index) {
  console.log(gesture)
});

Types of gestures

There are 4 types of recognized gestures:

  • Circle : 0
  • Swipe : 0
  • keyTap : 0
  • Screentap : 0

Previous
Next