Sfoglia il codice sorgente

Fix tscn format not being recongnized by EditorFileSystem

Franklin Sobrinho 9 anni fa
parent
commit
afb41b283c
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  1. 4 0
      scene/resources/scene_format_text.cpp

+ 4 - 0
scene/resources/scene_format_text.cpp

@@ -932,6 +932,10 @@ Ref<ResourceInteractiveLoader> ResourceFormatLoaderText::load_interactive(const
 
 void ResourceFormatLoaderText::get_recognized_extensions_for_type(const String& p_type,List<String> *p_extensions) const {
 
+	if (p_type=="") {
+		get_recognized_extensions(p_extensions);
+		return;
+	}
 
 	if (p_type=="PackedScene")
 		p_extensions->push_back("tscn");