Hi, I'm interested in working with the WebSocket v7
WebSocket('ws://localhost:6437/v7.json');
Looking at different versions of the examples, I found that they have different additional events.
I was able to collect these:
ws.send(JSON.stringify({enableGestures: true}));
ws.send(JSON.stringify({background: true}));
ws.send(JSON.stringify({focused: true}));
ws.send(JSON.stringify({optimizeHMD: true}));
https://developer.leapmotion.com/documentation/javascript/supplements/Leap_JSON.html?proglang=javascript
Offers a list of events but forgets to say about enableGestures, maybe there are more events?
What is the object of the 'ws://localhost:6437/v7.json'? Can I open it as anything else? Where is it on my computer? (Sorry for stupid questions)