diff --git a/example/fadingTiles.js b/example/fadingTiles.js index 3d1c84110..305e494ef 100644 --- a/example/fadingTiles.js +++ b/example/fadingTiles.js @@ -9,7 +9,7 @@ import { PerspectiveCamera, Group, } from 'three'; -import { FlyOrbitControls } from './FlyOrbitControls.js'; +import { FlyOrbitControls } from './src/controls/FlyOrbitControls.js'; import { GUI } from 'three/examples/jsm/libs/lil-gui.module.min.js'; let camera, controls, scene, renderer; diff --git a/example/index.js b/example/index.js index 4c01a0a3d..8f6a7a120 100644 --- a/example/index.js +++ b/example/index.js @@ -31,7 +31,7 @@ import { OrthographicCamera, Sphere, } from 'three'; -import { FlyOrbitControls } from './FlyOrbitControls.js'; +import { FlyOrbitControls } from './src/controls/FlyOrbitControls.js'; import * as BufferGeometryUtils from 'three/examples/jsm/utils/BufferGeometryUtils.js'; import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader.js'; import { DRACOLoader } from 'three/examples/jsm/loaders/DRACOLoader.js'; diff --git a/example/ionExample.js b/example/ionExample.js index 9895e7805..30babde7a 100644 --- a/example/ionExample.js +++ b/example/ionExample.js @@ -8,7 +8,7 @@ import { Group, Sphere, } from 'three'; -import { FlyOrbitControls } from './FlyOrbitControls.js'; +import { FlyOrbitControls } from './src/controls/FlyOrbitControls.js'; import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader.js'; import { DRACOLoader } from 'three/examples/jsm/loaders/DRACOLoader.js'; import { GUI } from 'three/examples/jsm/libs/lil-gui.module.min.js'; diff --git a/example/mars.js b/example/mars.js index a999138e1..125f55f9a 100644 --- a/example/mars.js +++ b/example/mars.js @@ -10,7 +10,7 @@ import { Group, FogExp2, } from 'three'; -import { FlyOrbitControls } from './FlyOrbitControls.js'; +import { FlyOrbitControls } from './src/controls/FlyOrbitControls.js'; import { GUI } from 'three/examples/jsm/libs/lil-gui.module.min.js'; let camera, controls, scene, renderer; diff --git a/example/FlyOrbitControls.js b/example/src/controls/FlyOrbitControls.js similarity index 100% rename from example/FlyOrbitControls.js rename to example/src/controls/FlyOrbitControls.js