/ovrt-helper

Helper library to make the OVR Toolkit Custom Apps API more accessible

Primary LanguageJavaScript

OVR Toolkit Custom Apps Helper Library

A library to simplify the usage of the OVR Toolkit custom apps API.

Usage

First, either include the file in your html

<script src="ovrt-helper.js"></script>

or uncomment the last few lines and include it as a common.js module:

const { OVRT } = require("./ovrt-helper");

Afterwards you can instantiate an OVRT object and be good to go:

const ovr = new OVRT({ function_queue: true }); // function queue allows function calls without waiting for the API ready event

Reference

A full overview and reference for all classes and methods can be found on the OVR Toolkit Wiki.