diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-09-07 17:12:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-07 17:12:01 +0200 |
commit | 3c42d5789f9ce485a17220371ae472f85d915249 (patch) | |
tree | 8af950ccd01ea14ed50183b32c2ecf5cc514ed44 /doc | |
parent | 2cb6b2ac6fd898b741d6e229264b568f3e99392e (diff) | |
parent | f043eabdd84a509abf5266bb444d19af3e26b7c6 (diff) |
Merge pull request #38308 from bruvzg/sad_security_circus
Adds PCK encryption support (using script encryption key for export).
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/PCKPacker.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/classes/PCKPacker.xml b/doc/classes/PCKPacker.xml index 314869be49..6b500d5ac3 100644 --- a/doc/classes/PCKPacker.xml +++ b/doc/classes/PCKPacker.xml @@ -23,6 +23,8 @@ </argument> <argument index="1" name="source_path" type="String"> </argument> + <argument index="2" name="encrypt" type="bool" default="false"> + </argument> <description> 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]). </description> @@ -43,6 +45,10 @@ </argument> <argument index="1" name="alignment" type="int" default="0"> </argument> + <argument index="2" name="key" type="String" default=""""> + </argument> + <argument index="3" name="encrypt_directory" type="bool" default="false"> + </argument> <description> 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). </description> |