summaryrefslogtreecommitdiff
path: root/doc/classes/PCKPacker.xml
blob: cb00b45fed44bdbebf77d9d0be6614ab2910175d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8" ?>
<class name="PCKPacker" inherits="RefCounted" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
	<brief_description>
		Creates packages that can be loaded into a running project.
	</brief_description>
	<description>
		The [PCKPacker] is used to create packages that can be loaded into a running project using [method ProjectSettings.load_resource_pack].
		[codeblocks]
		[gdscript]
		var packer = PCKPacker.new()
		packer.pck_start("test.pck")
		packer.add_file("res://text.txt", "text.txt")
		packer.flush()
		[/gdscript]
		[csharp]
		var packer = new PCKPacker();
		packer.PckStart("test.pck");
		packer.AddFile("res://text.txt", "text.txt");
		packer.Flush();
		[/csharp]
		[/codeblocks]
		The above [PCKPacker] creates package [code]test.pck[/code], then adds a file named [code]text.txt[/code] at the root of the package.
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="add_file">
			<return type="int" enum="Error" />
			<param index="0" name="pck_path" type="String" />
			<param index="1" name="source_path" type="String" />
			<param index="2" name="encrypt" type="bool" default="false" />
			<description>
				Adds the [param source_path] file to the current PCK package at the [param pck_path] internal path (should start with [code]res://[/code]).
			</description>
		</method>
		<method name="flush">
			<return type="int" enum="Error" />
			<param index="0" name="verbose" type="bool" default="false" />
			<description>
				Writes the files specified using all [method add_file] calls since the last flush. If [param verbose] is [code]true[/code], a list of files added will be printed to the console for easier debugging.
			</description>
		</method>
		<method name="pck_start">
			<return type="int" enum="Error" />
			<param index="0" name="pck_name" type="String" />
			<param index="1" name="alignment" type="int" default="32" />
			<param index="2" name="key" type="String" default="&quot;0000000000000000000000000000000000000000000000000000000000000000&quot;" />
			<param index="3" name="encrypt_directory" type="bool" default="false" />
			<description>
				Creates a new PCK file with the name [param pck_name]. The [code].pck[/code] file extension isn't added automatically, so it should be part of [param pck_name] (even though it's not required).
			</description>
		</method>
	</methods>
</class>