mirror of
https://github.com/sinbad/UEScripts.git
synced 2025-02-23 13:15:23 +00:00
52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"OutputDir": "/Path/To/Output/Parent/Dir",
|
|
"ZipDir": "/Path/To/Zipped/Releases/Folder",
|
|
|
|
"Target": "GameName",
|
|
"CookAllMaps": true,
|
|
"MapsIncluded": [
|
|
],
|
|
"MapsExcluded": [
|
|
],
|
|
"UsePak": true,
|
|
"CompressPak": false,
|
|
|
|
|
|
"Variants": [
|
|
{
|
|
"Name": "PublicWin64SteamBuild",
|
|
"Platform": "Win64",
|
|
"Configuration": "Shipping",
|
|
"SteamAppId": "YourSteamAppId",
|
|
"SteamDepotId": "YourWindowsDepotId",
|
|
"Zip": false,
|
|
"ExtraBuildArguments": "-EnableSteamworks"
|
|
},
|
|
{
|
|
"Name": "PublicWin64Build",
|
|
"Platform": "Win64",
|
|
"Configuration": "Shipping",
|
|
"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"
|
|
}
|
|
|
|
|