A library to simplify the usage of the OVR Toolkit custom apps API.
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
A full overview and reference for all classes and methods can be found on the OVR Toolkit Wiki.