Browse Source

use three.min.js

Gregg Tavares 6 years ago
parent
commit
3f7c49077f
37 changed files with 37 additions and 37 deletions
  1. 1 1
      threejs/lessons/threejs-align-html-elements-to-3d.md
  2. 1 1
      threejs/lessons/threejs-custom-geometry.md
  3. 1 1
      threejs/lessons/threejs-optimize-lots-of-objects-animated.md
  4. 1 1
      threejs/threejs-align-html-elements-to-3d-globe-too-many-labels.html
  5. 1 1
      threejs/threejs-align-html-elements-to-3d-globe.html
  6. 1 1
      threejs/threejs-custom-buffergeometry-cube-indexed.html
  7. 1 1
      threejs/threejs-custom-buffergeometry-cube-typedarrays.html
  8. 1 1
      threejs/threejs-custom-buffergeometry-cube.html
  9. 1 1
      threejs/threejs-custom-buffergeometry-dynamic.html
  10. 1 1
      threejs/threejs-custom-geometry-cube-texcoords.html
  11. 1 1
      threejs/threejs-custom-geometry-heightmap.html
  12. 1 1
      threejs/threejs-debugging-mcve.html
  13. 1 1
      threejs/threejs-indexed-textures-picking-and-highlighting.html
  14. 1 1
      threejs/threejs-indexed-textures-picking-debounced.html
  15. 1 1
      threejs/threejs-indexed-textures-picking.html
  16. 1 1
      threejs/threejs-indexed-textures-random-colors.html
  17. 1 1
      threejs/threejs-load-gltf-animated-cars.html
  18. 1 1
      threejs/threejs-load-gltf-car-path-fixed.html
  19. 1 1
      threejs/threejs-load-gltf-car-path.html
  20. 1 1
      threejs/threejs-load-gltf-dump-scenegraph-extra.html
  21. 1 1
      threejs/threejs-load-gltf-dump-scenegraph.html
  22. 1 1
      threejs/threejs-load-gltf-rotate-cars-fixed.html
  23. 1 1
      threejs/threejs-load-gltf-rotate-cars.html
  24. 1 1
      threejs/threejs-load-gltf-shadows.html
  25. 1 1
      threejs/threejs-load-gltf.html
  26. 1 1
      threejs/threejs-lots-of-objects-animated.html
  27. 1 1
      threejs/threejs-lots-of-objects-merged-vertexcolors.html
  28. 1 1
      threejs/threejs-lots-of-objects-merged.html
  29. 1 1
      threejs/threejs-lots-of-objects-morphtargets-w-colors.html
  30. 1 1
      threejs/threejs-lots-of-objects-morphtargets.html
  31. 1 1
      threejs/threejs-lots-of-objects-multiple-data-sets.html
  32. 1 1
      threejs/threejs-lots-of-objects-slow.html
  33. 1 1
      threejs/threejs-postprocessing-3dlut-identity.html
  34. 1 1
      threejs/threejs-postprocessing-3dlut-prep.html
  35. 1 1
      threejs/threejs-postprocessing-3dlut-w-loader.html
  36. 1 1
      threejs/threejs-postprocessing-3dlut.html
  37. 1 1
      threejs/threejs-postprocessing-adobe-lut-to-png-converter.html

+ 1 - 1
threejs/lessons/threejs-align-html-elements-to-3d.md

@@ -723,7 +723,7 @@ Finally, since I'm not sure what good values are for these settings lets
 add a GUI so we can play with them
 
 ```html
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 +<script src="../3rdparty/dat.gui.min.js"></script>

+ 1 - 1
threejs/lessons/threejs-custom-geometry.md

@@ -447,7 +447,7 @@ A few minor changes to make it easier to view.
 * include the `OrbitControls`
 
 ```html
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 +<script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 ```
 

+ 1 - 1
threejs/lessons/threejs-optimize-lots-of-objects-animated.md

@@ -377,7 +377,7 @@ because the original webgl globe uses
 We need to include the library
 
 ```html
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 +<script src="resources/threejs/r103/js/libs/tween.min.js"></script>

+ 1 - 1
threejs/threejs-align-html-elements-to-3d-globe-too-many-labels.html

@@ -57,7 +57,7 @@
       <div id="labels"></div>
     </div>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script>

+ 1 - 1
threejs/threejs-align-html-elements-to-3d-globe.html

@@ -57,7 +57,7 @@
       <div id="labels"></div>
     </div>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="../3rdparty/dat.gui.min.js"></script>

+ 1 - 1
threejs/threejs-custom-buffergeometry-cube-indexed.html

@@ -19,7 +19,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script>
 'use strict';
 

+ 1 - 1
threejs/threejs-custom-buffergeometry-cube-typedarrays.html

@@ -19,7 +19,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script>
 'use strict';
 

+ 1 - 1
threejs/threejs-custom-buffergeometry-cube.html

@@ -19,7 +19,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script>
 'use strict';
 

+ 1 - 1
threejs/threejs-custom-buffergeometry-dynamic.html

@@ -19,7 +19,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script>
 'use strict';
 

+ 1 - 1
threejs/threejs-custom-geometry-cube-texcoords.html

@@ -19,7 +19,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script>
 'use strict';
 

+ 1 - 1
threejs/threejs-custom-geometry-heightmap.html

@@ -19,7 +19,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script>
 'use strict';

+ 1 - 1
threejs/threejs-debugging-mcve.html

@@ -1,7 +1,7 @@
 <body>
   <canvas id="c"></canvas>
 </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script>
 'use strict';

+ 1 - 1
threejs/threejs-indexed-textures-picking-and-highlighting.html

@@ -57,7 +57,7 @@
       <div id="labels"></div>
     </div>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script>

+ 1 - 1
threejs/threejs-indexed-textures-picking-debounced.html

@@ -57,7 +57,7 @@
       <div id="labels"></div>
     </div>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script>

+ 1 - 1
threejs/threejs-indexed-textures-picking.html

@@ -57,7 +57,7 @@
       <div id="labels"></div>
     </div>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script>

+ 1 - 1
threejs/threejs-indexed-textures-random-colors.html

@@ -57,7 +57,7 @@
       <div id="labels"></div>
     </div>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script>

+ 1 - 1
threejs/threejs-load-gltf-animated-cars.html

@@ -20,7 +20,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/loaders/GLTFLoader.js"></script>
 <script src="../3rdparty/dat.gui.min.js"></script>

+ 1 - 1
threejs/threejs-load-gltf-car-path-fixed.html

@@ -20,7 +20,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/loaders/GLTFLoader.js"></script>
 <script src="../3rdparty/dat.gui.min.js"></script>

+ 1 - 1
threejs/threejs-load-gltf-car-path.html

@@ -20,7 +20,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/loaders/GLTFLoader.js"></script>
 <script src="../3rdparty/dat.gui.min.js"></script>

+ 1 - 1
threejs/threejs-load-gltf-dump-scenegraph-extra.html

@@ -20,7 +20,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/loaders/GLTFLoader.js"></script>
 <script src="../3rdparty/dat.gui.min.js"></script>

+ 1 - 1
threejs/threejs-load-gltf-dump-scenegraph.html

@@ -20,7 +20,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/loaders/GLTFLoader.js"></script>
 <script src="../3rdparty/dat.gui.min.js"></script>

+ 1 - 1
threejs/threejs-load-gltf-rotate-cars-fixed.html

@@ -20,7 +20,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/loaders/GLTFLoader.js"></script>
 <script src="../3rdparty/dat.gui.min.js"></script>

+ 1 - 1
threejs/threejs-load-gltf-rotate-cars.html

@@ -20,7 +20,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/loaders/GLTFLoader.js"></script>
 <script src="../3rdparty/dat.gui.min.js"></script>

+ 1 - 1
threejs/threejs-load-gltf-shadows.html

@@ -20,7 +20,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/loaders/GLTFLoader.js"></script>
 <script src="../3rdparty/dat.gui.min.js"></script>

+ 1 - 1
threejs/threejs-load-gltf.html

@@ -20,7 +20,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/loaders/GLTFLoader.js"></script>
 <script src="../3rdparty/dat.gui.min.js"></script>

+ 1 - 1
threejs/threejs-lots-of-objects-animated.html

@@ -40,7 +40,7 @@
     <canvas id="c"></canvas>
     <div id="ui"></div>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/libs/tween.min.js"></script>

+ 1 - 1
threejs/threejs-lots-of-objects-merged-vertexcolors.html

@@ -19,7 +19,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script>

+ 1 - 1
threejs/threejs-lots-of-objects-merged.html

@@ -19,7 +19,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script>

+ 1 - 1
threejs/threejs-lots-of-objects-morphtargets-w-colors.html

@@ -40,7 +40,7 @@
     <canvas id="c"></canvas>
     <div id="ui"></div>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/libs/tween.min.js"></script>

+ 1 - 1
threejs/threejs-lots-of-objects-morphtargets.html

@@ -40,7 +40,7 @@
     <canvas id="c"></canvas>
     <div id="ui"></div>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/libs/tween.min.js"></script>

+ 1 - 1
threejs/threejs-lots-of-objects-multiple-data-sets.html

@@ -40,7 +40,7 @@
     <canvas id="c"></canvas>
     <div id="ui"></div>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/utils/BufferGeometryUtils.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script>

+ 1 - 1
threejs/threejs-lots-of-objects-slow.html

@@ -19,7 +19,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script>
 'use strict';

+ 1 - 1
threejs/threejs-postprocessing-3dlut-identity.html

@@ -19,7 +19,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/loaders/GLTFLoader.js"></script>
 <script src="resources/threejs/r103/js/shaders/CopyShader.js"></script>

+ 1 - 1
threejs/threejs-postprocessing-3dlut-prep.html

@@ -20,7 +20,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/loaders/GLTFLoader.js"></script>
 <script>

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

@@ -19,7 +19,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/loaders/GLTFLoader.js"></script>
 <script src="resources/threejs/r103/js/shaders/CopyShader.js"></script>

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

@@ -19,7 +19,7 @@
   <body>
     <canvas id="c"></canvas>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/controls/OrbitControls.js"></script>
 <script src="resources/threejs/r103/js/loaders/GLTFLoader.js"></script>
 <script src="resources/threejs/r103/js/shaders/CopyShader.js"></script>

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

@@ -30,7 +30,7 @@
     <p><button type="button">Save...</button></p>
     <div id="cube"><canvas id="c"></canvas></div>
   </body>
-<script src="resources/threejs/r103/three.js"></script>
+<script src="resources/threejs/r103/three.min.js"></script>
 <script src="resources/threejs/r103/js/shaders/CopyShader.js"></script>
 <script src="resources/threejs/r103/js/postprocessing/EffectComposer.js"></script>
 <script src="resources/threejs/r103/js/postprocessing/RenderPass.js"></script>