Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 328 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 328 Bytes

@webvoxel/plugin-webvr

WebVR support for WebVoxel projects

Usage

import { Game, World } from '@webvoxel/core';
import { WebVRPlugin } from '@webvoxel/plugin-webvr';

const vr = new WebVRPlugin();

const game = new Game({
    plugins: [
        vr,
    ],
    initialWorld: new World(),
});

game.start();