From a83b92fbdd41c10d9c9f6b3bfbf75eef468db3d0 Mon Sep 17 00:00:00 2001 From: biwa <6475593+biwa@users.noreply.github.com> Date: Sun, 28 Jan 2024 18:40:39 +0100 Subject: [PATCH] GZDoom game configuration: added UDMF sidedef fields for wall colors --- Build/Configurations/Includes/ZDoom_misc.cfg | 132 +++++++++++++++++++ Build/Updater.ini | 6 +- 2 files changed, 135 insertions(+), 3 deletions(-) diff --git a/Build/Configurations/Includes/ZDoom_misc.cfg b/Build/Configurations/Includes/ZDoom_misc.cfg index b8ea86e0..bb6165f1 100755 --- a/Build/Configurations/Includes/ZDoom_misc.cfg +++ b/Build/Configurations/Includes/ZDoom_misc.cfg @@ -648,6 +648,138 @@ universalfields default = 0.0; managed = false; } + + nogradient_top + { + type = 3; + default = false; + managed = false; + } + + flipgradient_top + { + type = 3; + default = false; + managed = false; + } + + clampgradient_top + { + type = 3; + default = false; + managed = false; + + } + + useowncolors_top + { + type = 3; + default = false; + managed = false; + + } + + uppercolor_top + { + type = 10; + default = 16777215; + managed = false; + } + + lowercolor_top + { + type = 10; + default = 16777215; + managed = false; + } + + nogradient_mid + { + type = 3; + default = false; + managed = false; + } + + flipgradient_mid + { + type = 3; + default = false; + managed = false; + } + + clampgradient_mid + { + type = 3; + default = false; + managed = false; + + } + + useowncolors_mid + { + type = 3; + default = false; + managed = false; + + } + + uppercolor_mid + { + type = 10; + default = 16777215; + managed = false; + } + + lowercolor_mid + { + type = 10; + default = 16777215; + managed = false; + } + + nogradient_bottom + { + type = 3; + default = false; + managed = false; + } + + flipgradient_bottom + { + type = 3; + default = false; + managed = false; + } + + clampgradient_bottom + { + type = 3; + default = false; + managed = false; + + } + + useowncolors_bottom + { + type = 3; + default = false; + managed = false; + + } + + uppercolor_bottom + { + type = 10; + default = 16777215; + managed = false; + } + + lowercolor_bottom + { + type = 10; + default = 16777215; + managed = false; + } } thing diff --git a/Build/Updater.ini b/Build/Updater.ini index 734436a2..29e7b98a 100755 --- a/Build/Updater.ini +++ b/Build/Updater.ini @@ -1,5 +1,5 @@ URL https://ultimatedoombuilder.github.io/files/ FileName Builder.exe -UpdateName UltimateDoomBuilder-r[REVNUM]-x64.7z -InstallerName UltimateDoomBuilder-Setup-R[REVNUM]-x64.exe -UpdaterName UDB_Updater-x64.7z \ No newline at end of file +UpdateName UltimateDoomBuilder-r[REVNUM]-x86.7z +InstallerName UltimateDoomBuilder-Setup-R[REVNUM]-x86.exe +UpdaterName UDB_Updater-x86.7z \ No newline at end of file