leapjs-plugins
leapjs-plugins copied to clipboard
A collection of plugins available to be used with LeapJS.
Dear All, I tried adding leapjs-plugins in Added two scripts in index.html ` ` With by just adding `declare var Leap;` in one of the class I could use Leap....
I was trying to use the RiggedHand, but this depends on versionCheck. In revision 0.1.12, this plugin is documented, but not included in the library. It's missing in the index...
I am trying to get the hand working in a npm and Babel based environment. In my package.json, I have this dependency on Three.js: I have the following npm dependency...
Hello all the contributors. Thank you for providing great libraries. I have a question about 'transform' plugin. I guess 'scale' factor changes only palmPosition. palmVelocity dose not change. Is it...
When I require leapjs-plugins 0.1.11 inside node, I'm currently getting this error: ``` .../node_modules/leapjs-plugins/main/playback/leap.playback-0.2.1.js:1835 }( window )); ^ ReferenceError: window is not defined at Object. (.../node_modules/leapjs-plugins/main/playback/leap.playback-0.2.1.js:1835:4) at Module._compile (module.js:556:32) at...
I suggest to write down the two emitted events (handMeshCreated, handMeshUsed) of the bone-hand plugin in the [related example](http://leapmotion.github.io/leapjs-plugins/main/bone-hand/). This is also done for the [rigged-hands example](https://github.com/leapmotion/leapjs-rigged-hand#events). I wasn't aware...
When dragging and dropping a json file, the hand is partially off screen. Is there a way to resize the canvas or hand?
Via @capnmidnight : > I have one comment. Work on making all of this stuff work better when the leap controller is _not_ managing the animation frame loop. Or if...
This plugin measures how flat and stretched-out a hand is measures how spread out and flat a hand is fires 'handSplay' and 'handUnsplay' events from the controller Two items are...
cc @nashira @paulmand3l ``` javascript function LowPassFilter(cutoff) { var accumulator = 0; this.setCutoff = function (value) { cutoff = value; }; this.sample = function(sample) { accumulator += (sample - accumulator)...