@jdultra/threedtiles 10.1.7 → 10.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,10 +17,10 @@ Each file is provided in two variations:
17
17
  * **Default:** Latest stable builds, tracking the project's [master branch](https://github.com/google/draco).
18
18
  * **glTF:** Builds targeted by the [glTF mesh compression extension](https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_draco_mesh_compression), tracking the [corresponding Draco branch](https://github.com/google/draco/tree/gltf_2.0_draco_extension).
19
19
 
20
- Either variation may be used with `THREE.DRACOLoader`:
20
+ Either variation may be used with `DRACOLoader`:
21
21
 
22
22
  ```js
23
- var dracoLoader = new THREE.DRACOLoader();
23
+ var dracoLoader = new DRACOLoader();
24
24
  dracoLoader.setDecoderPath('path/to/decoders/');
25
25
  dracoLoader.setDecoderConfig({type: 'js'}); // (Optional) Override detection of WASM support.
26
26
  ```