File size: 354 Bytes
cdfc1f1
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**

 * Three.js Setup and Export

 * Makes Three.js and OrbitControls available globally

 */

import * as THREE from 'three';
import { OrbitControls } from 'three/addons/controls/OrbitControls.js';

// Make THREE available globally
window.THREE = THREE;
window.OrbitControls = OrbitControls;

console.log('Three.js loaded:', THREE.REVISION);