0.1.4 • Published 7 years ago

aframe-auto-detect-controllers-component v0.1.4

Weekly downloads
10
License
MIT
Repository
github
Last release
7 years ago

aframe-auto-detect-controllers-component

Auto-Detect Controllers component for A-Frame.

Image of Controllers

The auto-detect-controllers component interfaces with the Gamepad API to detect Oculus Touch or Vive tracked-position controllers, and when discovered it injects the appropriate controls e.g. tracked-controls, oculus-touch-controls or vive-controls.

If gearvr-controls is included, it will also detect and inject that component. See https://github.com/chenzlabs/gearvr-controls for more information on that component.

By default, the appropriate controls will be injected with their built-in model enabled, so the user will see Vive or Oculus Touch controller models depending on which is detected. (Note however that gearvr-controls does not supply a controller model.)

In some cases, it may be desirable for the developer to build their own model and/or functionality atop the detected controller component, in which case there are two options:

  • Set model to false, in which case the injected component is instructed not to use its built-in model.
  • Set trackedcontrols to true, in which case the more generic component without model will be injected.

Example

<a-entity auto-detect-controllers></a-entity>

To also use gearvr-controls:

<!-- include gearvr-controls component... -->
<script src="https://rawgit.com/chenzlabs/gearvr-controls/master/dist/aframe-gearvr-controls-component.min.js"></script>

<!-- then somewhere inside a-scene... -->
<a-entity auto-detect-controllers></a-entity>

Value

PropertyDescriptionDefault Value
handWhen detected, inject controls with this hand.'right'
singlehandSingle-hand controllers inject with this hand.'right'
trackedcontrolsInject tracked-controls not e.g. vive-controlsfalse
modelInject with this model property value.true

Events

Event NameDescription

Installation

Browser

Install and use by directly including the browser files:

<head>
  <title>My A-Frame Scene</title>
  <script src="https://aframe.io/releases/0.4.0/aframe.min.js"></script>
  <script src="https://rawgit.com/chenzlabs/auto-detect-controllers/master/dist/aframe-auto-detect-controllers-component.min.js"></script>
</head>

<body>
  <a-scene>
    <!-- If detected, will use built-in controller model (e.g. Oculus Touch or Vive) -->
    <a-entity id="lefthand" auto-detect-controllers="hand:left"></a-entity>
    <a-entity id="righthand" auto-detect-controllers="hand:right"></a-entity>
  </a-scene>
</body>

npm

Install via npm:

npm install aframe-auto-detect-controllers-component

Then register and use.

require('aframe');
require('aframe-auto-detect-controllers-component');
0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago