Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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.physics.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
├── json-model.js
├── jump-ability.js
├── physics
│ ├── dynamic-body.js
│ ├── kinematic-body.js
│ ├── physics.js
│ ├── quaternion.js
│ ├── rigid-body.js
│ └── velocity.js
├── shadows
│ ├── shadow-light.js
│ └── shadow.js
├── toggle-velocity.js
└── universal-controls.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.rigid-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.
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.
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.