Merge pull request #64823 from derammo/derammo_fix_trivial_resource_saver_arg_name
This commit is contained in:
commit
dc185278a9
2 changed files with 3 additions and 3 deletions
|
@ -70,7 +70,7 @@ void ResourceFormatSaver::get_recognized_extensions(const Ref<Resource> &p_resou
|
||||||
}
|
}
|
||||||
|
|
||||||
void ResourceFormatSaver::_bind_methods() {
|
void ResourceFormatSaver::_bind_methods() {
|
||||||
GDVIRTUAL_BIND(_save, "path", "resource", "flags");
|
GDVIRTUAL_BIND(_save, "resource", "path", "flags");
|
||||||
GDVIRTUAL_BIND(_recognize, "resource");
|
GDVIRTUAL_BIND(_recognize, "resource");
|
||||||
GDVIRTUAL_BIND(_get_recognized_extensions, "resource");
|
GDVIRTUAL_BIND(_get_recognized_extensions, "resource");
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,8 +26,8 @@
|
||||||
</method>
|
</method>
|
||||||
<method name="_save" qualifiers="virtual">
|
<method name="_save" qualifiers="virtual">
|
||||||
<return type="int" />
|
<return type="int" />
|
||||||
<param index="0" name="path" type="Resource" />
|
<param index="0" name="resource" type="Resource" />
|
||||||
<param index="1" name="resource" type="String" />
|
<param index="1" name="path" type="String" />
|
||||||
<param index="2" name="flags" type="int" />
|
<param index="2" name="flags" type="int" />
|
||||||
<description>
|
<description>
|
||||||
Saves the given resource object to a file at the target [param path]. [param flags] is a bitmask composed with [enum ResourceSaver.SaverFlags] constants.
|
Saves the given resource object to a file at the target [param path]. [param flags] is a bitmask composed with [enum ResourceSaver.SaverFlags] constants.
|
||||||
|
|
Loading…
Reference in a new issue