0.1.0 • Published 7 years ago

aframe-4dof-controls-component v0.1.0

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

aframe-4dof-controls-component

Version License

A 4dof Controls component for A-Frame.

For A-Frame.

API

PropertyDescriptionDefault Value
eventsList of events to redirect to the target element.
lengthMaximum length to move the target element2
maxAngleMaximum angle to rotate on Z115
minAngleMinimum angle to rotate on Z0
targetSelector for the target element, if not defined it will default to the first child of the element.

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.7.0/aframe.min.js"></script>
  <script src="https://unpkg.com/aframe-4dof-controls-component/dist/aframe-4dof-controls-component.min.js"></script>
</head>

<body>
  <a-scene>
    <a-entity daydream-controls gearvr-controls 4dof-controls>
      <a-entity><!-- hand --></a-entity>
    </a-entity>
  </a-scene>
</body>

npm

Install via npm:

npm install aframe-4dof-controls-component

Then require and use.

require('aframe');
require('aframe-4dof-controls-component');