From ee2c2578a170324bffef38cb8a3c2e60d89d5e87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Tue, 19 Apr 2022 03:08:45 +0200 Subject: [PATCH] Make README comment about disabling WASM even more excruciatingly clear. (#843) --- javascript/example/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/example/README.md b/javascript/example/README.md index b4f44df..a6263dc 100644 --- a/javascript/example/README.md +++ b/javascript/example/README.md @@ -45,7 +45,7 @@ Create DracoLoader by setting the decoder type: // the static URL. THREE.DRACOLoader.setDecoderPath('./path/to/decoder/'); -// (Optional) Use JS decoder (defaults to WebAssembly if supported). +// (Optional) Force non-WebAssembly JS decoder (without this line, WebAssembly is the default if supported). THREE.DRACOLoader.setDecoderConfig({type: 'js'}); // (Optional) Pre-fetch decoder source files (defaults to load on demand).