Developer
Posts: 3185
<script src="vpploader.js"></script>
let options = {The options object requires at least the path or obj parameter and the callback parameter. The callback should be a function that accepts the completed three.js mesh as it's argument.
callback: onModelLoaded,
path: "mymodel.vpp"
};
vppLoader.getMesh(options);
function onModelLoaded(mesh) {
scene.add(mesh);
}