dreamgaussian / model.html
radames's picture
fpa
8ecea2a
raw
history blame contribute delete
745 Bytes
<html>
<head>
<script src="https://preview.babylonjs.com/viewer/babylon.viewer.js"></script>
</head>
<body>
<div id="viewer"></div>
<script>
const viewerEl = document.querySelector("#viewer");
const iframe = window.frameElement;
const modeUrl = iframe.getAttribute("model-url");
const viewer = new BabylonViewer.DefaultViewer(viewerEl, {
scene: {
debug: false
},
camera: {
behaviors: {
autoRotate: {
idleRotationSpeed: 0.3,
idleRotationWaitTime: 3000
}
}
},
model: {
url: modeUrl
},
templates: {
"nav-bar": {
html: "<div></div>"
}
}
});
</script>
</body>
</html>