2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2019-04-01 12:33:56 +02:00
<class name= "PCKPacker" inherits= "Reference" category= "Core" version= "3.2" >
2017-09-12 22:42:36 +02:00
<brief_description >
2019-12-07 00:38:34 +01:00
Creates packages that can be loaded into a running project.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2019-12-07 00:38:34 +01:00
The [PCKPacker] is used to create packages that can be loaded into a running project using [method ProjectSettings.load_resource_pack].
2019-11-12 14:53:55 +01:00
[codeblock]
var packer = PCKPacker.new()
2019-12-07 01:05:11 +01:00
packer.pck_start("test.pck")
2019-11-12 14:53:55 +01:00
packer.add_file("res://text.txt", "text.txt")
2019-12-07 01:05:11 +01:00
packer.flush()
2019-11-12 14:53:55 +01:00
[/codeblock]
2019-12-07 00:38:34 +01:00
The above [PCKPacker] creates package [code]test.pck[/code], then adds a file named [code]text.txt[/code] at the root of the package.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "add_file" >
<return type= "int" enum= "Error" >
</return>
<argument index= "0" name= "pck_path" type= "String" >
</argument>
<argument index= "1" name= "source_path" type= "String" >
</argument>
<description >
2019-11-12 14:53:55 +01:00
Adds the [code]source_path[/code] file to the current PCK package at the [code]pck_path[/code] internal path (should start with [code]res://[/code]).
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "flush" >
<return type= "int" enum= "Error" >
</return>
2019-12-07 01:05:11 +01:00
<argument index= "0" name= "verbose" type= "bool" default= "false" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2019-12-07 00:38:34 +01:00
Writes the files specified using all [method add_file] calls since the last flush. If [code]verbose[/code] is [code]true[/code], a list of files added will be printed to the console for easier debugging.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "pck_start" >
<return type= "int" enum= "Error" >
</return>
<argument index= "0" name= "pck_name" type= "String" >
</argument>
2019-12-07 01:05:11 +01:00
<argument index= "1" name= "alignment" type= "int" default= "0" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2019-12-07 00:38:34 +01:00
Creates a new PCK file with the name [code]pck_name[/code]. The [code].pck[/code] file extension isn't added automatically, so it should be part of [code]pck_name[/code] (even though it's not required).
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<constants >
</constants>
</class>