diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-28 17:21:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-28 17:21:16 +0100 |
commit | 620030b600b375545ecab5190615e08919e56da4 (patch) | |
tree | 0ca3e64b0da0edf3d4b1fd14ed558311dd9041e4 /modules/gdnative/pluginscript/pluginscript_loader.cpp | |
parent | 324e5a60dd068cbbff9c433802f8ecb78cff3364 (diff) | |
parent | 475e4ea67b7e650fd1df01eab6ea659afbc16ec5 (diff) | |
download | redot-engine-620030b600b375545ecab5190615e08919e56da4.tar.gz |
Merge pull request #36640 from reduz/resource-loader-refactor
Removed ResourceInteractiveLoader, add built-in threaded loading.
Diffstat (limited to 'modules/gdnative/pluginscript/pluginscript_loader.cpp')
-rw-r--r-- | modules/gdnative/pluginscript/pluginscript_loader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/pluginscript/pluginscript_loader.cpp b/modules/gdnative/pluginscript/pluginscript_loader.cpp index fe1cc83c69..46db20b6c2 100644 --- a/modules/gdnative/pluginscript/pluginscript_loader.cpp +++ b/modules/gdnative/pluginscript/pluginscript_loader.cpp @@ -39,7 +39,7 @@ ResourceFormatLoaderPluginScript::ResourceFormatLoaderPluginScript(PluginScriptL _language = language; } -RES ResourceFormatLoaderPluginScript::load(const String &p_path, const String &p_original_path, Error *r_error) { +RES ResourceFormatLoaderPluginScript::load(const String &p_path, const String &p_original_path, Error *r_error, bool p_use_sub_threads, float *r_progress) { if (r_error) *r_error = ERR_FILE_CANT_OPEN; |