summaryrefslogtreecommitdiff
path: root/doc/classes
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2019-12-07 01:05:11 +0100
committerHugo Locurcio <hugo.locurcio@hugo.pro>2019-12-07 01:06:42 +0100
commitfe0696618163de1f329ce380612ed133af58a498 (patch)
tree86f7be6278a8dfdf63cb43938203e34e69a19aea /doc/classes
parentff58030ed693b6915ea7b378b0483b65547d5f8b (diff)
Make some arguments in PCKPacker methods optional
Those arguments aren't required for most common use cases, so making them optional should help with code readability.
Diffstat (limited to 'doc/classes')
-rw-r--r--doc/classes/PCKPacker.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/classes/PCKPacker.xml b/doc/classes/PCKPacker.xml
index ff45ca925c..1946438cc2 100644
--- a/doc/classes/PCKPacker.xml
+++ b/doc/classes/PCKPacker.xml
@@ -6,9 +6,9 @@
The [PCKPacker] is used to create packages in application runtime.
[codeblock]
var packer = PCKPacker.new()
- packer.pck_start("test.pck", 0)
+ packer.pck_start("test.pck")
packer.add_file("res://text.txt", "text.txt")
- packer.flush(false)
+ packer.flush()
[/codeblock]
The above [PCKPacker] creates package [b]test.pck[/b], then adds a file named [b]text.txt[/b] in the root of the package.
</description>
@@ -29,7 +29,7 @@
<method name="flush">
<return type="int" enum="Error">
</return>
- <argument index="0" name="verbose" type="bool">
+ <argument index="0" name="verbose" type="bool" default="false">
</argument>
<description>
</description>
@@ -39,7 +39,7 @@
</return>
<argument index="0" name="pck_name" type="String">
</argument>
- <argument index="1" name="alignment" type="int">
+ <argument index="1" name="alignment" type="int" default="0">
</argument>
<description>
</description>