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.
24 lines
508 B
24 lines
508 B
import * as THREE from '../../src/Three.js';
|
|
|
|
let camera, scene, renderer;
|
|
|
|
init();
|
|
|
|
function init() {
|
|
|
|
camera = new THREE.PerspectiveCamera( 70, window.innerWidth / window.innerHeight, 0.01, 10 );
|
|
|
|
scene = new THREE.Scene();
|
|
|
|
renderer = new THREE.WebGLRenderer( { antialias: true } );
|
|
renderer.setSize( window.innerWidth, window.innerHeight );
|
|
renderer.setAnimationLoop( animation );
|
|
document.body.appendChild( renderer.domElement );
|
|
|
|
}
|
|
|
|
function animation( ) {
|
|
|
|
renderer.render( scene, camera );
|
|
|
|
}
|
|
|