diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-29 22:30:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-29 22:30:51 +0200 |
commit | 15a02c49be7f552eb79512cff7511144023cedbe (patch) | |
tree | 009a554dc59b24d78df0b1303f6a7077f075913e /doc/classes | |
parent | d8f757c62deb85024047ebb5c28b59633adf9247 (diff) | |
parent | c3606cb5f3ab82248cac0d748bb291aa978b0b58 (diff) |
Merge pull request #61647 from KoBeWi/SaverResource
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/ResourceFormatSaver.xml | 4 | ||||
-rw-r--r-- | doc/classes/ResourceSaver.xml | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/classes/ResourceFormatSaver.xml b/doc/classes/ResourceFormatSaver.xml index c156814a1d..f9c4ca0d49 100644 --- a/doc/classes/ResourceFormatSaver.xml +++ b/doc/classes/ResourceFormatSaver.xml @@ -26,8 +26,8 @@ </method> <method name="_save" qualifiers="virtual"> <return type="int" /> - <argument index="0" name="path" type="String" /> - <argument index="1" name="resource" type="Resource" /> + <argument index="0" name="path" type="Resource" /> + <argument index="1" name="resource" type="String" /> <argument index="2" name="flags" type="int" /> <description> Saves the given resource object to a file at the target [code]path[/code]. [code]flags[/code] is a bitmask composed with [enum ResourceSaver.SaverFlags] constants. diff --git a/doc/classes/ResourceSaver.xml b/doc/classes/ResourceSaver.xml index 240c72a131..10387a4f14 100644 --- a/doc/classes/ResourceSaver.xml +++ b/doc/classes/ResourceSaver.xml @@ -35,11 +35,11 @@ </method> <method name="save"> <return type="int" enum="Error" /> - <argument index="0" name="path" type="String" /> - <argument index="1" name="resource" type="Resource" /> + <argument index="0" name="resource" type="Resource" /> + <argument index="1" name="path" type="String" default="""" /> <argument index="2" name="flags" type="int" enum="ResourceSaver.SaverFlags" default="0" /> <description> - Saves a resource to disk to the given path, using a [ResourceFormatSaver] that recognizes the resource object. + Saves a resource to disk to the given path, using a [ResourceFormatSaver] that recognizes the resource object. If [code]path[/code] is empty, [ResourceSaver] will try to use [member Resource.resource_path]. The [code]flags[/code] bitmask can be specified to customize the save behavior using [enum SaverFlags] flags. Returns [constant OK] on success. </description> |