npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

aframe-motion-capture-components

v0.2.7

Published

A-Frame motion capture components

Downloads

113

Readme

aframe-motion-capture-components

A-Frame motion capture components record pose and events from entities (e.g., camera and tracked controllers) that can be stored in JSON or localStorage and then later replayed.

The motion capture components allow us to emulate the presence of a VR headset and controllers. We can build test automation tools for VR experiences. We can replay the recorded user behavior and assert the state of the entities at the end. This can happen with no user intervention at all.

We can also record user interactions and develop on the go where there's no VR hardware available. We can iterate over the visual aspect or behavior of the experience using the recorded user input. Read more about the motion capture components and its use cases as development tools.

The A-Frame Inspector uses these components to power the Motion Capture Development Tools UI.

TRY THE DEMOS

Usage

The motion capture components is most easily used by opening the A-Frame Inspector (<ctrl> + <alt> + i), and hitting m to open the Motion Capture Development Tools UI.

Avatar Recording

An avatar is the representation of a user. Use the avatar-recorder to record headset and tracked controller poses as well as controller events (i.e., button presses and touches).

  1. Set the avatar-recorder component on the <a-scene> element.
  2. Make sure your controllers have ids.
  3. Hit <space> to start recording.
  4. Record movements and controller events.
  5. Hit <space> again to stop recording.
  6. You'll have an option to save the JSON file or upload it by pressing u on the keyboard.
  7. The recording will play from localStorage.
<a-scene avatar-recorder>
  <a-entity id="controller1" hand-controls></a-entity>
  <a-entity id="controller2" hand-controls></a-entity>
</a-scene>

Hit c on the keyboard to clear all recordings from localStorage.

Avatar Replaying

The avatar-recorder will automatically set the avatar-replayer component. Though we can specify the avatar-replayer explicitly if we want to configure it or if we don't need recording (i.e., production).

avatar-replayer can be manually disabled from the URL query parameter avatar-replayer-disabled (e.g., http://localhost:8000/?avatar-replayer-disabled). spectator-mode can be enabled using the URL query parameter specatatorMode.

From localStorage

By default, the avatar-recorder will save the recording into localStorage which the avatar-replayer will replay from by default. Recordings are stored in localStorage.getItem('avatarRecordings') and are keyed recordingName (defaults to default).

Hit p to toggle playback.

From File

We can specify the path to a recording file via the avatar-recording query parameter in the URL:

https://foo.bar?avatar-recording=path/to/recording.json
https://foo.bar?avatar-recording=path/to/anotherRecording.json

Or we can specify the path to a recording file in the HTML via the src property:

<a-scene avatar-replayer="src: recording.json">
  <a-entity id="controller1" hand-controls"></a-entity>
  <a-entity id="controller2" hand-controls"></a-entity>
</a-scene>

API

avatar-recorder

| Property | Description | Default Value | | ----------------- | ------------------------------------------------------- | ------------- | | autoPlay | Whether to play recording on page load. | true | | autoRecord | Whether to start recording on page load. | false | | autoSaveFile | Whether to prompt to save a JSON of the recording to file system. | true | | localStorage | Whether to persist recordings in localStorage keyed as avatarRecordings. | false | | loop | Whether to replay recording in a loop. | false | | recordingName | Name of recording to store in localStorage.getItem('avatarRecordings'). | default | | spectatorMode | Whether to replay recording in third person mode. | false | | spectatorPosition | Initial position of the spectator camera. | 0 0 0 |

Methods

| Method | Description | | ----------------- | ------------------------------------------------------- | | saveRecordingFile (recording) | Save recording to file. recording can either be raw data or recording name stored in localStorage. | | startRecording () | Start recording | | stopRecording () | Stop recording. |

Keyboard Shortcuts

| Key | Description | | ------- | ---------------------------------------------- | | space | Toggle recording. | | q | Toggle spectator mode camera. | | c | Clear recording from localStorage and memory. | | u | Upload recording to file host and get short URL. |

avatar-replayer

For spectator mode, avatar-replayer will create a head geometry to make the camera visible, represented as a pink box with eyes. This set as cameraEl.getObject3D('replayerMesh') but is not visible by default.

| Property | Description | Default Value | | ----------------- | ------------------------------------------ | ------------- | | autoPlay | Whether to play recording on page load. | true | | loop | Whether to replay recording in a loop. | false | | recordingName | Specify to replay recording from localStorage. | default | | spectatorMode | Whether to replay recording in third person mode. | false | | spectatorPosition | Initial position of the spectator camera. | 0 0 0 | | src | Path or URL to recording data. | '' |

Methods

| Method | Description | | ----------------- | ------------------------------------------------------- | | replayRecordingFromSource () | Replay recording from either recordingName for localStorage or src for external file. | | startReplaying (recordingData) | Start replaying given passed recording data (object). | | stopReplaying () | Stop replaying. |

motion-capture-replayer

| Property | Description | Default Value | | -------- | ---------------------------------------------------- | ------------- | | enabled | | true | | loop | The animation replays in a loop. | false | | recorderEl | An entity that it's the source of the recording. | null | | src | The recording data can be hosted in a URL. | '' |

motion-capture-recorder

| Property | Description | Default Value | | -------- | ----------------------------------------------------- | ------------- | | autoRecord | The component start recording at page load. | false | | enabled | | true | | hand | The controller that will trigger recording. | 'right' | | recordingControls | Recording is activated by the controller trigger | false | | persistStroke | The recorded stroke is persisted as reference. | false | | visibleStroke | The recorded stroke is renderered for visual feedback.| true |

Installation

Browser

Install and use by directly including the browser files:

<head>
  <title>Motion Capture</title>
  <script src="https://aframe.io/releases/0.6.0/aframe.min.js"></script>
  <script src="https://unpkg.com/aframe-motion-capture-components/dist/aframe-motion-capture-components.min.js"></script>
</head>
<body>
  <a-scene avatar-recorder avatar-replayer>
    <a-entity id="leftHand" hand-controls="left"></a-entity>
    <a-entity id="rightHand" hand-controls="right"></a-entity>
  </a-scene>
</body>

Or with angle, you can install the proper version of the component straight into your HTML file, respective to your version of A-Frame:

npm install -g angle && angle install aframe-motion-capture-components

npm

Install via npm:

npm install aframe-motion-capture-components

Then require and use.

require('aframe');
require('aframe-motion-capture-components');