2.5.3 • Published 8 years ago

aframe-testras v2.5.3

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

A-Frame Extras

Build Status GitHub license

Add-ons and helpers for A-Frame VR.

Usage (Scripts)

In the dist/ folder, download any package(s) you need. Include the scripts on your page, and all components are automatically registered for you:

<script src="//cdn.rawgit.com/donmccurdy/aframe-extras/v2.5.3/dist/aframe-extras.min.js"></script>

CDN builds for aframe-extras/v2.5.3:

For partial builds, use a subpackage like aframe-extras.physics.min.js. Full list of packages below.

A-Frame Version Compatibility

A-FrameExtras
>= v0.3.0aframe-extras/v2.5.3
< v0.2.0*/v1.17.0

Usage (NPM)

npm install --save aframe-extras
// custom-extras.js

var extras = require('aframe-extras');
AFRAME.registerComponent('velocity', extras.math.velocity); // Register a single component.
extras.physics.registerAll();                               // Register a particular package, and its dependencies.
extras.registerAll();                                       // Register everything.

Once installed, you'll need to compile your JavaScript using something like Browserify or Webpack. Example:

npm install -g browserify
browserify custom-extras.js -o bundle.js

bundle.js may then be included in your page. See here for a better introduction to Browserify.

Add-ons