this repo has no description

three/examples/jsm -> three/addons

Changed files
+9 -9
src
+1 -1
src/app.js
··· 1 - import WebGL from 'three/examples/jsm/capabilities/WebGL.js'; 1 + import WebGL from 'three/addons/capabilities/WebGL.js'; 2 2 import { Viewer } from './viewer.js'; 3 3 import { SimpleDropzone } from 'simple-dropzone'; 4 4 import { Validator } from './validator.js';
+8 -8
src/viewer.js
··· 21 21 LinearToneMapping, 22 22 ACESFilmicToneMapping, 23 23 } from 'three'; 24 - import Stats from 'three/examples/jsm/libs/stats.module.js'; 25 - import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader.js'; 26 - import { KTX2Loader } from 'three/examples/jsm/loaders/KTX2Loader.js'; 27 - import { DRACOLoader } from 'three/examples/jsm/loaders/DRACOLoader.js'; 28 - import { MeshoptDecoder } from 'three/examples/jsm/libs/meshopt_decoder.module.js'; 29 - import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js'; 30 - import { EXRLoader } from 'three/examples/jsm/loaders/EXRLoader.js'; 31 - import { RoomEnvironment } from 'three/examples/jsm/environments/RoomEnvironment.js'; 24 + import Stats from 'three/addons/libs/stats.module.js'; 25 + import { GLTFLoader } from 'three/addons/loaders/GLTFLoader.js'; 26 + import { KTX2Loader } from 'three/addons/loaders/KTX2Loader.js'; 27 + import { DRACOLoader } from 'three/addons/loaders/DRACOLoader.js'; 28 + import { MeshoptDecoder } from 'three/addons/libs/meshopt_decoder.module.js'; 29 + import { OrbitControls } from 'three/addons/controls/OrbitControls.js'; 30 + import { EXRLoader } from 'three/addons/loaders/EXRLoader.js'; 31 + import { RoomEnvironment } from 'three/addons/environments/RoomEnvironment.js'; 32 32 33 33 import { GUI } from 'dat.gui'; 34 34