diff options
author | Hunter Loftis <hunter@hunterloftis.com> | 2024-10-13 14:42:10 -0400 |
---|---|---|
committer | Hunter Loftis <hunter@hunterloftis.com> | 2024-10-15 11:46:14 -0400 |
commit | bbb8c1703bd1c2769b02372588153d5388d584e8 (patch) | |
tree | c04cbca72d78eb1a6af6339d5bf7e726199f2d54 /doc/classes/EditorImportPlugin.xml | |
parent | af77100e394dcaca609b15bef815ed17475e51ed (diff) | |
download | redot-engine-bbb8c1703bd1c2769b02372588153d5388d584e8.tar.gz |
Fix freeze on non-thread-safe custom importers
Diffstat (limited to 'doc/classes/EditorImportPlugin.xml')
-rw-r--r-- | doc/classes/EditorImportPlugin.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/EditorImportPlugin.xml b/doc/classes/EditorImportPlugin.xml index 28614b6631..e5f3010366 100644 --- a/doc/classes/EditorImportPlugin.xml +++ b/doc/classes/EditorImportPlugin.xml @@ -124,7 +124,8 @@ <return type="bool" /> <description> Tells whether this importer can be run in parallel on threads, or, on the contrary, it's only safe for the editor to call it from the main thread, for one file at a time. - If this method is not overridden, it will return [code]true[/code] by default (i.e., safe for parallel importing). + If this method is not overridden, it will return [code]false[/code] by default. + If this importer's implementation is thread-safe and can be run in parallel, override this with [code]true[/code] to optimize for concurrency. </description> </method> <method name="_get_import_options" qualifiers="virtual const"> |