feat: godot-engine-source-4.3-stable
This commit is contained in:
parent
c59a7dcade
commit
7125d019b5
11149 changed files with 5070401 additions and 0 deletions
54
engine/doc/classes/PCKPacker.xml
Normal file
54
engine/doc/classes/PCKPacker.xml
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<class name="PCKPacker" inherits="RefCounted" 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=""0000000000000000000000000000000000000000000000000000000000000000"" />
|
||||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue