mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 21:52:51 +00:00
Exposes ResourceFormatLoader.recognize_path to scripting
This commit is contained in:
parent
104af08e9d
commit
8aa904f56c
@ -49,6 +49,11 @@ Ref<ResourceFormatLoader> ResourceLoader::loader[ResourceLoader::MAX_LOADERS];
|
|||||||
int ResourceLoader::loader_count = 0;
|
int ResourceLoader::loader_count = 0;
|
||||||
|
|
||||||
bool ResourceFormatLoader::recognize_path(const String &p_path, const String &p_for_type) const {
|
bool ResourceFormatLoader::recognize_path(const String &p_path, const String &p_for_type) const {
|
||||||
|
bool ret = false;
|
||||||
|
if (GDVIRTUAL_CALL(_recognize_path, p_path, p_for_type, ret)) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
String extension = p_path.get_extension();
|
String extension = p_path.get_extension();
|
||||||
|
|
||||||
List<String> extensions;
|
List<String> extensions;
|
||||||
@ -189,6 +194,7 @@ void ResourceFormatLoader::_bind_methods() {
|
|||||||
BIND_ENUM_CONSTANT(CACHE_MODE_REPLACE);
|
BIND_ENUM_CONSTANT(CACHE_MODE_REPLACE);
|
||||||
|
|
||||||
GDVIRTUAL_BIND(_get_recognized_extensions);
|
GDVIRTUAL_BIND(_get_recognized_extensions);
|
||||||
|
GDVIRTUAL_BIND(_recognize_path, "path", "type");
|
||||||
GDVIRTUAL_BIND(_handles_type, "type");
|
GDVIRTUAL_BIND(_handles_type, "type");
|
||||||
GDVIRTUAL_BIND(_get_resource_type, "path");
|
GDVIRTUAL_BIND(_get_resource_type, "path");
|
||||||
GDVIRTUAL_BIND(_get_resource_uid, "path");
|
GDVIRTUAL_BIND(_get_resource_uid, "path");
|
||||||
|
@ -51,6 +51,7 @@ protected:
|
|||||||
static void _bind_methods();
|
static void _bind_methods();
|
||||||
|
|
||||||
GDVIRTUAL0RC(Vector<String>, _get_recognized_extensions)
|
GDVIRTUAL0RC(Vector<String>, _get_recognized_extensions)
|
||||||
|
GDVIRTUAL2RC(bool, _recognize_path, String, StringName)
|
||||||
GDVIRTUAL1RC(bool, _handles_type, StringName)
|
GDVIRTUAL1RC(bool, _handles_type, StringName)
|
||||||
GDVIRTUAL1RC(String, _get_resource_type, String)
|
GDVIRTUAL1RC(String, _get_resource_type, String)
|
||||||
GDVIRTUAL1RC(ResourceUID::ID, _get_resource_uid, String)
|
GDVIRTUAL1RC(ResourceUID::ID, _get_resource_uid, String)
|
||||||
|
@ -71,6 +71,15 @@
|
|||||||
The [param cache_mode] property defines whether and how the cache should be used or updated when loading the resource. See [enum CacheMode] for details.
|
The [param cache_mode] property defines whether and how the cache should be used or updated when loading the resource. See [enum CacheMode] for details.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="_recognize_path" qualifiers="virtual const">
|
||||||
|
<return type="bool" />
|
||||||
|
<param index="0" name="path" type="String" />
|
||||||
|
<param index="1" name="type" type="StringName" />
|
||||||
|
<description>
|
||||||
|
Tells whether or not this loader should load a resource from its resource path for a given type.
|
||||||
|
If it is not implemented, the default behavior returns whether the path's extension is within the ones provided by [method _get_recognized_extensions], and if the type is within the ones provided by [method _get_resource_type].
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
<method name="_rename_dependencies" qualifiers="virtual const">
|
<method name="_rename_dependencies" qualifiers="virtual const">
|
||||||
<return type="int" />
|
<return type="int" />
|
||||||
<param index="0" name="path" type="String" />
|
<param index="0" name="path" type="String" />
|
||||||
|
Loading…
Reference in New Issue
Block a user