| 83 | } |
| 84 | |
| 85 | Ref<ResourceInfo> ResourceFormatGDScriptLoader::get_resource_info(const String &p_path, Error *r_error) const { |
| 86 | Ref<ResourceInfo> info; |
| 87 | info.instantiate(); |
| 88 | _set_resource_info(info, p_path); |
| 89 | info->original_path = p_path; |
| 90 | return info; |
| 91 | } |
| 92 | |
| 93 | // void _set_resource_info(Ref<ResourceInfo> &info, const String &p_path) const; |
| 94 |
nothing calls this directly
no test coverage detected