From ba6aa4dc133d67e7807daa5a0d9345108ba0bb17 Mon Sep 17 00:00:00 2001 From: Steve Streeting Date: Wed, 7 Oct 2020 13:03:03 +0100 Subject: [PATCH] Make template more self-documenting --- packageconfig_template.json | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/packageconfig_template.json b/packageconfig_template.json index 1679e5d..6612b57 100644 --- a/packageconfig_template.json +++ b/packageconfig_template.json @@ -1,19 +1,33 @@ { "OutputDir": "/Path/To/Output/Parent/Dir", - "ZipDir": "/Path/To/Zipped/Releases/Folder", + "ZipDir": "/Optional/Path/To/Zipped/Releases/Folder", "ProjectFile": "OptionalProjectFilenameWillDetectInDirOtherwise.uproject", "Target": "GameTargetName", "CookAllMaps": true, "MapsIncluded": [ + "IfCookAllMapsIsFalse", + "ListMapsToCookHere" ], "MapsExcluded": [ + "IfCookAllMapsIsTrue", + "ListMapsToExcludeHere" ], "UsePak": true, + "DefaultVariants": [ + "PrivateWin64Build" + ], "Variants": [ + { + "Name": "PrivateWin64Build", + "Platform": "Win64", + "Configuration": "Development", + "Zip": true, + "ExtraBuildArguments": "-Any -Custom -Args=ToRunUAT -OrOtherCommandlets" + }, { "Name": "PublicWin64SteamBuild", "Platform": "Win64", @@ -23,9 +37,9 @@ "Zip": false, "ExtraBuildArguments": "-EnableSteamworks", "Cultures": [ - "en", - "fr", - "de" + "ListOfCulturesToInclude", + "IfNotSpecified", + "WillUseProjectPackageSettings" ] }, { @@ -35,22 +49,9 @@ "ItchAppId": "itch-user/app-name", "ItchChannel": "win64", "Zip": false - }, - { - "Name": "PrivateWin64Build", - "Platform": "Win64", - "Configuration": "Development", - "ItchAppId": "itch-user/private-app-name", - "ItchChannel": "win64-dev", - "Zip": true, - "ExtraBuildArguments": "-Foo=Bar -Something" } ], - "DefaultVariants": [ - "PrivateWin64Build" - ], - "SteamLogin": "YourSteamReleaseUser" }