You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
52 lines
1.2 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title><!-- title --></title>
|
|
<meta charset="utf-8">
|
|
<meta name="generator" content="Three.js Editor">
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
font-size: 11px;
|
|
background-color: #000;
|
|
margin: 0px;
|
|
}
|
|
canvas {
|
|
display: block;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body ontouchstart="">
|
|
<script type="module">
|
|
|
|
import * as THREE from './js/three.module.js';
|
|
import { APP } from './js/app.js';
|
|
import { VRButton } from './js/VRButton.js';
|
|
|
|
window.THREE = THREE; // Used by APP Scripts.
|
|
window.VRButton = VRButton; // Used by APP Scripts.
|
|
|
|
var loader = new THREE.FileLoader();
|
|
loader.load( 'app.json', function ( text ) {
|
|
|
|
var player = new APP.Player();
|
|
player.load( JSON.parse( text ) );
|
|
player.setSize( window.innerWidth, window.innerHeight );
|
|
player.play();
|
|
|
|
document.body.appendChild( player.dom );
|
|
|
|
window.addEventListener( 'resize', function () {
|
|
|
|
player.setSize( window.innerWidth, window.innerHeight );
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
/* edit button */
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|