Socket
Socket
Sign inDemoInstall

vrb

Package Overview
Dependencies
3
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vrb

[![npm version](https://badge.fury.io/js/vrb.svg)](https://badge.fury.io/js/vrb)


Version published
Weekly downloads
70
increased by3400%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

vrb

npm version

vrb (ˈvɚb , ˌvi ɑr ˈbi), v.: to verb VR; to virtually really be.

Simple three.js-based web VR module. Supports positional audio and VR controllers.

Opens in an orthographic view of the scene. Click a toggle to enter in and out of a perspective VR mode.

install

npm i vrb

usage

import vrb from 'vrb'
import {Scene} from 'three'

const scene = new Scene()
const viewer = document.createElement('div')
const onReady = () => {
	// do whatever you want once the VR device is ready
}
const onNoVr = () => {
	// do whatever you want once it is determined that your system does not support VR
}


const vrb = vrb({ scene, viewer, onReady, onNoVr })

const toggle = document.createElement('div')
toggle.onclick = vrb.toggleVr

options

onAnimate

Hook that will be called each render frame. Use to update your scene.

Example usage:

const onAnimate = () => {
    clouds.drift()
    song.nextNote()
}

vrb({ scene, toggle, viewer, onAnimate })

onControllerConnected

Hook that will be called each time a controller connects, with the controller as the argument. Use e.g. to add a mesh to the controller and attach event listeners.

Example usage:

const onControllerConnected = controller => {
    controller.add(new BoxGeometry(0.5))
    controller.addEventListener('thumbpad press began', handleThumbpadPress)
}

vrb({ scene, viewer, onControllerConnected })

camerasConfig

Override default camera configuration with this object.

{
    ORTHOGRAPHIC_FRUSTUM_TOP,
    ORTHOGRAPHIC_FRUSTUM_BOTTOM,
    ORTHOGRAPHIC_FRUSTUM_LEFT,
    ORTHOGRAPHIC_FRUSTUM_RIGHT,
    ORTHOGRAPHIC_FRUSTUM_NEAR,
    ORTHOGRAPHIC_FRUSTUM_FAR,
    PERSPECTIVE_ASPECT_RATIO,
    PERSPECTIVE_FOV,
    PERSPECTIVE_FRUSTUM_FAR,
    PERSPECTIVE_FRUSTUM_NEAR,
    INITIAL_ORTHOGRAPHIC_POSITION,
    INITIAL_ORTHOGRAPHIC_TARGET,
    INITIAL_PERSPECTIVE_POSITION,
    INITIAL_PERSPECTIVE_TARGET,
}

methods & properties

.player

This is a meshless three.js Object3D which has the perspective camera and any controllers added to it. That way you can translate the player around independently of the three.js VRControls to go beyond room scale VR. Note: if you want to know the position of the user's head, you'll have to look at both player.position and cameras.perspectiveCamera.position, as it will be the sum of the two.

#getIsPresenting

Wrapper for renderer.vr.getDevice().isPresenting.

#createSpatialOscillator

Wrapper for three.js AudioListener context #createOscillator.

#createPositionalSound

Provides a configured three.js PositionalAudio.

#setBackgroundColor

Wrapper for three.js WebGLRenderer#setClearColor.

#changeOnAnimate

If it is necessary to change your onAnimate function after building your vrb, use this. Pass it a function that will get called with the current onAnimate and return what you want it to be afterwards.

vrb.changeOnAnimate(oldAnimate => createModifiedAnimate(oldAnimate))

#changeOnControllerConnected

If it is necessary to change your onControllerConnected function after building your vrb, use this. Pass it a function that will get called with the current onControllerConnected and return what you want it to be afterwards.

vrb.onControllerConnected(oldOnControllerConnected => createModifiedOnControllerConnected(oldOnControllerConnected))

Keywords

FAQs

Last updated on 12 Oct 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc