diff options
author | Felix Yuan <fyuan87@gmail.com> | 2024-11-10 21:11:52 -0800 |
---|---|---|
committer | Felix Yuan <jihadfeeves@gmail.com> | 2024-11-11 09:47:43 -0800 |
commit | 1768a1b991093857d424d720945020129c01a9c3 (patch) | |
tree | d9c272426cdc6629232ac33fdf6fd5eba6c26074 /platform/web/js/engine/config.js | |
parent | 0f5f3bc9546b46b2029fc8896dc859697f1eab97 (diff) | |
download | redot-engine-1768a1b991093857d424d720945020129c01a9c3.tar.gz |
Remove deprecated worker.js file
Diffstat (limited to 'platform/web/js/engine/config.js')
-rw-r--r-- | platform/web/js/engine/config.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/platform/web/js/engine/config.js b/platform/web/js/engine/config.js index 61b488cf81..3947195fa1 100644 --- a/platform/web/js/engine/config.js +++ b/platform/web/js/engine/config.js @@ -295,8 +295,6 @@ const InternalConfig = function (initConfig) { // eslint-disable-line no-unused- 'locateFile': function (path) { if (!path.startsWith('godot.')) { return path; - } else if (path.endsWith('.worker.js')) { - return `${loadPath}.worker.js`; } else if (path.endsWith('.audio.worklet.js')) { return `${loadPath}.audio.worklet.js`; } else if (path.endsWith('.audio.position.worklet.js')) { |