@galacean/engine-loader 1.5.11 → 1.5.12
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.
- package/dist/main.js +2 -2
- package/dist/main.js.map +1 -1
- package/dist/module.js +2 -2
- package/dist/module.js.map +1 -1
- package/libs/basis_transcoder.js +18 -0
- package/libs/basis_transcoder.wasm +0 -0
- package/package.json +6 -5
package/dist/main.js
CHANGED
|
@@ -3336,10 +3336,10 @@ function transcode(buffer, targetFormat, KTX2File) {
|
|
|
3336
3336
|
_proto._initTranscodeWorkerPool = function _initTranscodeWorkerPool() {
|
|
3337
3337
|
var _this = this;
|
|
3338
3338
|
return Promise.all([
|
|
3339
|
-
fetch("https://mdn.alipayobjects.com/rms/afts/file/A*
|
|
3339
|
+
fetch("https://mdn.alipayobjects.com/rms/afts/file/A*ImQSTZQiexkAAAAAQ1AAAAgAehQnAQ/basis_transcoder.js").then(function(res) {
|
|
3340
3340
|
return res.text();
|
|
3341
3341
|
}),
|
|
3342
|
-
fetch("https://mdn.alipayobjects.com/rms/afts/file/A*
|
|
3342
|
+
fetch("https://mdn.alipayobjects.com/rms/afts/file/A*DFX8RJ6Z0G0AAAAAXoAAAAgAehQnAQ/basis_transcoder.wasm").then(function(res) {
|
|
3343
3343
|
return res.arrayBuffer();
|
|
3344
3344
|
})
|
|
3345
3345
|
]).then(function(param) {
|