mirror of
https://github.com/sinbad/UEScripts.git
synced 2025-02-23 13:15:23 +00:00
Remove CompressPak from config structure as well
This commit is contained in:
parent
db1b6e9381
commit
8328051da8
@ -65,8 +65,6 @@ class PackageConfig {
|
|||||||
[array]$MapsExcluded
|
[array]$MapsExcluded
|
||||||
# Whether to combine assets into a pak file (default true)
|
# Whether to combine assets into a pak file (default true)
|
||||||
[bool]$UsePak
|
[bool]$UsePak
|
||||||
# Whether to compress the pak file (default false since deployments often compress & can detect diffs better)
|
|
||||||
[bool]$CompressPak
|
|
||||||
# List of PackageVariant entries
|
# List of PackageVariant entries
|
||||||
[array]$Variants
|
[array]$Variants
|
||||||
# Names of the default variant(s) to package / release if unspecified
|
# Names of the default variant(s) to package / release if unspecified
|
||||||
@ -76,7 +74,6 @@ class PackageConfig {
|
|||||||
# Construct from JSON object
|
# Construct from JSON object
|
||||||
$this.CookAllMaps = $true
|
$this.CookAllMaps = $true
|
||||||
$this.UsePak = $true
|
$this.UsePak = $true
|
||||||
$this.CompressPak = $false
|
|
||||||
$this.Variants = @()
|
$this.Variants = @()
|
||||||
|
|
||||||
# Override just properties that are set
|
# Override just properties that are set
|
||||||
|
Loading…
x
Reference in New Issue
Block a user