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

buttonvr

v2.0.3

Published

A minimal button for use in VR. Triggered just by looking at it.

Downloads

13

Readme

ButtonVR

A minimal button for use in VR.

Triggered just by looking at it.

It uses 3D objects as buttons.

You can download the project and view the examples.

git clone https://github.com/Sean-Bradley/ButtonVR.git
cd ButtonVR
npm install
npm run dev

Visit https://127.0.0.1:3000/

How to import ButtonVR

npm install buttonvr

In your code, import it

import ButtonVR from 'buttonvr'

Instantiate And Use

Pass in an existing THREE.Scene, THREE.Camera and optional milliseconds duration to look at the button until it fires the pressed event. (Default 1000 milliseconds)

const buttonVR = new ButtonVR(scene, camera)

or

const buttonVR = new ButtonVR(scene, camera, 500) //wait 500 millisecinds to decide if button is pressed. (Default 1000ms)

Create your Object3D, give it a name, add it to scene, and add it to the ButtonVR buttons list.

const box = new THREE.Mesh(
    new THREE.BoxGeometry(1, 1, 1),
    new THREE.MeshBasicMaterial({
        color: 0xff0066,
        wireframe: true,
    })
)
box.name = 'box'
box.position.set(-2, 0.5, -4)
scene.add(box)
buttonVR.buttons.push(box)

Update ButtonVR in your render loop just before rendering your scene.

buttonVR.update(renderer)
renderer.render(scene, camera)

ButtonVR Events

When you look at an object, the pressedStart start event fires, and the countdown begins.

buttonVR.addEventListener('pressedStart', (intersection: THREE.Intersection) => {
    console.log('pressedStart')
})

After the countdown duration (default 1 second), the pressed event fires. The countdown timer continues to increase only if you continue to look at the object.

buttonVR.addEventListener('pressed', (intersection: THREE.Intersection) => {
    console.log('pressed')
})

When you stop looking at an object, the pressedEnd event fires.

buttonVR.addEventListener('pressedEnd', () => {
    console.log('pressedEnd')
})

Example 1

Basic ButtonVR demo.

ButtonVR Example 1

Example 2

Basic ButtonVR demo 2.

ButtonVR Example 2

ButtonVR Source Project

This is a TypeScript project consisting of two sub projects with there own tsconfigs.

To edit this example, then modify the files in ./src/client/ or ./src/server/

The projects will auto recompile if you started it by using npm run dev

Threejs TypeScript Course

Visit https://github.com/Sean-Bradley/Three.js-TypeScript-Boilerplate for a Threejs TypeScript boilerplate containing many extra branches that demonstrate many examples of Threejs.

To help support this Threejs example, please take a moment to look at my official Threejs TypeScript course at

Threejs TypeScript Course

Three.js and TypeScript
Discount Coupons for all my courses can be found at https://sbcode.net/coupons