0.0.2 • Published 4 years ago

webxr-controller-helper v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

webxr-controller-helper

Automatically setup models and input mappings for WebXR controllers

Usage

Install

$ npm install --save webxr-controller-helper
  import { controllerHelper } from 'webxr-controller-helper';

  function onSessionStarted(session) {
    renderer.xr.setSession(session);
    renderer.setAnimationLoop(render);
    controllerHelper.setupControllers(renderer);
  }

  document.addEventListener('controllerHelperReady', function (ev) {
    controllers = ev.detail;
    console.log(`Found ${Object.keys(controllers.hands).length} ${controllers.type} controller(s)`);
    for (const hand in controllers.hands) {
      if (!controllers.hands.hasOwnProperty(hand)) continue;
      console.log(`Setup ${hand} hand controller`);
      playerRig.add(controllers.hands[hand].model);
      playerRig.add(controllers.hands[hand].grip);
    }
  });

  document.addEventListener('controllerHelperStateChange', function (ev) {
    console.log('Controller State Changed:', ev.detail);
  });

  document.addEventListener('controllerHelperValueChange', function (ev) {
    console.log('Controller Value Changed:', ev.detail);
  });

  document.addEventListener('controllerHelperAxisChange', function (ev) {
    console.log('Controller Axis Changed:', ev.detail);
  });

  document.addEventListener('controllerHelperChange', function () {
    console.log('Controller Changed:', ControllerHelper.state);
  });
0.0.2

4 years ago

0.0.1

4 years ago