Security News
Supply Chain Attack Detected in @solana/web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
aframe-extras
Advanced tools
Add-ons and helpers for A-Frame VR.
npm install --save aframe-extras
var extras = require('aframe-extras');
AFRAME.registerComponent('velocity', extras.math.velocity); // Register a single component.
extras.physics.registerAll(); // Register a particular package.
extras.registerAll(); // Register everything.
Coming soon.
src
├── controls
│ ├── gamepad-controls.js
│ ├── hmd-controls.js
│ ├── keyboard-controls.js
│ ├── mouse-controls.js
│ ├── touch-controls.js
│ └── universal-controls.js
├── loaders
│ ├── fbx-model.js
│ └── three-model.js
├── math
│ ├── quaternion.js
│ └── velocity.js
├── misc
│ ├── jump-ability.js
│ ├── jump-ability-lite.js
│ └── toggle-velocity.js
├── physics
│ ├── dynamic-body.js
│ ├── kinematic-body.js
│ ├── physics.js
│ └── static-body.js
└── shadows
├── shadow-light.js
└── shadow.js
Extensible movement/rotation/hotkey controls, with support for a variety of input devices.
universal-controls
: Manager for other controls, which can be used to decide which input device is used when multiple are available, and to set common acceleration/sensitivity across all controls.gamepad-controls
, hmd-controls
, keybard-controls
, mouse-controls
, and touch-controls
.
I've written standalone components for several other control components.
leap-motion-controls
: In progress.Connect input devices from your desktop to your mobile phone with WebRTC, using ProxyControls.js.
Components for A-Frame physics integration, built on CANNON.js.
Scene Physics:
physics
: Added to the <a-scene/>
element, and manages global physics WorldObject Types:
dynamic-body
: Object that moves only according to physics simulation, which has mass and may collide with other objects.static-body
: Static body with a fixed position. Unaffected by gravity and collisions, but other objects may collide with it.kinematic-body
: Controlled but dynamic body, which moves but is not affected (directly) by the physics engine. Intended for use on the player's model. Gravity and collisions are simulated, without giving full control to the physics engine.Math:
velocity
: Helper to update an object's by a fixed amount position over time.quaternion
: Helper for preventing gimbal-lock during rotation.Runtime shadows, with the shadow
and shadow-light
components. Originally written by @ngokevin, and likely to be available in A-Frame later (https://github.com/aframevr/aframe-core/pull/348).
NOTE: Adding shadows to more than a few simple objects can slow your scene >down significantly. For performant shadows on scenery, like trees and houses, bake your shadows into your textures using modeling software.
FAQs
Add-ons and examples for A-Frame VR.
The npm package aframe-extras receives a total of 4,947 weekly downloads. As such, aframe-extras popularity was classified as popular.
We found that aframe-extras demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.