fixed interactive_loader() not returning a cached scene
This commit is contained in:
parent
e0e52055bc
commit
47bd1e8688
1 changed files with 5 additions and 1 deletions
|
@ -319,7 +319,11 @@ Ref<ResourceInteractiveLoader> ResourceLoader::load_interactive(const String &p_
|
||||||
if (OS::get_singleton()->is_stdout_verbose())
|
if (OS::get_singleton()->is_stdout_verbose())
|
||||||
print_line("load resource: "+local_path+" (cached)");
|
print_line("load resource: "+local_path+" (cached)");
|
||||||
|
|
||||||
return RES( ResourceCache::get(local_path ) );
|
Ref<Resource> res_cached = ResourceCache::get(local_path);
|
||||||
|
Ref<ResourceInteractiveLoaderDefault> ril = Ref<ResourceInteractiveLoaderDefault>(memnew(ResourceInteractiveLoaderDefault));
|
||||||
|
|
||||||
|
ril->resource = res_cached;
|
||||||
|
return ril;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (OS::get_singleton()->is_stdout_verbose())
|
if (OS::get_singleton()->is_stdout_verbose())
|
||||||
|
|
Loading…
Reference in a new issue