Browse Source

fix typos

Gregg Tavares 5 years ago
parent
commit
7f6977e5c2

+ 1 - 1
threejs/threejs-postprocessing-3dlut-w-loader.html

@@ -21,7 +21,7 @@
   </body>
 <script type="module">
 import * as lutParser from './resources/lut-reader.js';
-import * as dragAndDrop from './resource/drag-and-drop.js';
+import * as dragAndDrop from './resources/drag-and-drop.js';
 import * as THREE from './resources/threejs/r110/build/three.module.js';
 import {OrbitControls} from './resources/threejs/r110/examples/jsm/controls/OrbitControls.js';
 import {GLTFLoader} from './resources/threejs/r110/examples/jsm/loaders/GLTFLoader.js';

+ 0 - 2
threejs/threejs-postprocessing-3dlut.html

@@ -19,8 +19,6 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/lut-reader.js"></script>
-<script src="resources/drag-and-drop.js"></script>
 <script type="module">
 import * as THREE from './resources/threejs/r110/build/three.module.js';
 import {OrbitControls} from './resources/threejs/r110/examples/jsm/controls/OrbitControls.js';

+ 1 - 1
threejs/threejs-postprocessing-adobe-lut-to-png-converter.html

@@ -32,7 +32,7 @@
   </body>
 <script type="module">
 import * as lutParser from './resources/lut-reader.js';
-import * as dragAndDrop from './resource/drag-and-drop.js';
+import * as dragAndDrop from './resources/drag-and-drop.js';
 import * as THREE from './resources/threejs/r110/build/three.module.js';
 import {EffectComposer} from './resources/threejs/r110/examples/jsm/postprocessing/EffectComposer.js';
 import {RenderPass} from './resources/threejs/r110/examples/jsm/postprocessing/RenderPass.js';