Fix tscn format not being recongnized by EditorFileSystem

This commit is contained in:
Franklin Sobrinho 2015-12-09 13:56:14 -03:00
parent 2d84943a2b
commit afb41b283c

View file

@ -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");