Ultimate Doom Builder

Any utility that assists in the creation of mods, assets, etc, go here. For example: Ultimate Doom Builder, Slade, WadSmoosh, Oblige, etc.
Forum rules
The Projects forums are ONLY for YOUR PROJECTS! If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.

Got a cool project idea but nothing else? Put it in the project ideas thread instead!

Projects for any Doom-based engine (especially 3DGE) are perfectly acceptable here too.

Please read the full rules for more details.
User avatar
Darkcrafter
Posts: 590
Joined: Sat Sep 23, 2017 8:42 am
Operating System Version (Optional): Windows 10
Graphics Processor: nVidia with Vulkan support
Contact:

Re: Ultimate Doom Builder

Post by Darkcrafter »

Tarachillax wrote: Fri Jul 25, 2025 12:16 pm I’m creating a level in Ultimate Doom Builder and I can’t find a way to merge two designs on top of each other.

I have Sector A, where I only designed the floor. It has various textures, height differences, actions (like tags), etc. The ceiling is still empty and just a basic square.
Then I duplicated Sector A to create Sector B, deleted floor design and designed only the ceiling with height, texture and details.

Sector A: Only floor
Sector B: Only Ceiling

Now I want to combine Sector A and Sector B but without overwriting both. The problem is, there’s no special “overlap” function or plugin. If I drag sector B on sector A, A will get same floor like B.
I want to select the ceiling from Sector B, choose a function that only replace the ceiling and then place it over the floor design of Sector A. Brightness setting can too.

I don’t know if this is possible — that’s why I’m asking.
This function would be ideal for complex layout design without requiring too much manual work. Maybe it was already suggested before, but it's hard to implement?
Unfortunately this is how doom works as all maps are projected from 2D space. There are "ROR" type quirks (room-over-room) that try to evade this limitation in Hexen or preferably UDMF:
- 3D floors (actual sector based geometry). You select a sector area Floor at 0, Ceiling at 256, give it a tag 10 for example and create another triangle dummy sector outside the map, give it heights like Floor at 32 and Ceiling at 64, select any of its lines (1 linedef is enough), give it action 160, give it tag parameter 10 (you made earlier) and it's going to translate its properties to your tag#10 sector.
- portals:
a) line portals (vertical) - makes a vertical window passage between one wall (not strictly wall but linedef) and another. Give one linedef a tag 20, another 21, then on line#20 give it exit tag 21, and on line#21 tag 20 (interconnect them), and choose "Interactive". Make sure there must be a free space after each of them at least 32 map units but 64 is preferable. E.g. idealy, there must be a tunnel on one side and other with the same height parameters, the same textures, and before the dead end wall (white linedef that faces black void) you step those 64 units and split it with another linedef which you assign portal action to - on both sides!
b) stacked sectors (horizontal) - a bit more complex but it allows you to connect holes in floors and ceilings between different parts of the maps. Make sure that connected floor and ceiling heights must be the same.
Portals_stuff_GZDoom.zip
(5.14 KiB) Downloaded 16 times
User avatar
phantombeta
Posts: 2178
Joined: Thu May 02, 2013 1:27 am
Operating System Version (Optional): Windows 10
Graphics Processor: nVidia with Vulkan support
Location: Brazil

Re: Ultimate Doom Builder

Post by phantombeta »

Darkcrafter wrote: Fri Jul 25, 2025 3:04 pm [snip]
Nothing about what they said indicates they want RoR. From the sounds of it, they want UDB to "merge" one set of sectors' floors with another's ceilings, and make modifications where necessary to fit. Nothing about that should require 3D floors or portals, just new editor features. (It'd have to cut some sectors up to fit together if they have different shapes, but that's nothing mappers don't already do manually to make floors and ceilings with different patterns)
User avatar
Darkcrafter
Posts: 590
Joined: Sat Sep 23, 2017 8:42 am
Operating System Version (Optional): Windows 10
Graphics Processor: nVidia with Vulkan support
Contact:

Re: Ultimate Doom Builder

Post by Darkcrafter »

My bad then. Yeah, maybe that would be nice to have such a feature but it seems like it's really hard to implement, like what's about merging errors like overlapping vertices, linedefs and etc, something very error prone.
User avatar
Enjay
 
 
Posts: 27099
Joined: Tue Jul 15, 2003 4:58 pm
Location: Scotland
Contact:

Re: Ultimate Doom Builder

Post by Enjay »

I have noticed a minor oddity that may just be as expected, or it may be unintended. So I thought I'd check.

Situation:
A ZScript actor has a scale factor applied in its default block. For example, 0.8 to make it slightly smaller.
I then decide to replace the actor with a model, but the model is too big, so I scale it in MODELDEF. e.g. 0.5 0.5 0.5

I want to keep the original actor as it was, so that the model is optional.

Ingame, the model looks the correct size. I assume that GZDoom is able to apply both scale factors, presumably resulting in an actor/model the is 0.8*0.5=0.4 its original size. It's quite hard to tell for sure, but I think that's what's happening.

In UDB, the model appears too big and appears to be using the scaling from ZSCript, but ignoring the scaling from MODELDEF.
This does not seem to happen when actors have no scale value in their ZScript.

I can fix the model myself so that it is the size I want in the actual MD3 file, and appears the same in game and in UDB. So, it's not really an issue for me. I just thought I'd check if it was a known situation.
SuaveSteve
Posts: 80
Joined: Sat Jul 05, 2014 7:38 am

Re: Ultimate Doom Builder

Post by SuaveSteve »

May I ask if we can change the shift value? For example, I want to change lighting in steps of 8.

Sorry if this has been asked before.
Attachments
Screenshot 2025-08-03 162422.png
User avatar
Kappes Buur
 
 
Posts: 4182
Joined: Thu Jul 17, 2003 12:19 am
Graphics Processor: nVidia (Legacy GZDoom)
Location: British Columbia, Canada
Contact:

Re: Ultimate Doom Builder

Post by Kappes Buur »

SuaveSteve wrote: Sun Aug 03, 2025 9:31 am ...., I want to change lighting in steps of 8.
The simple answers is no.
In vanilla DOOM/BOOM the brightness is effective only in steps of 16.
For steps of 8 you have to map in UDMF.
boris
Posts: 776
Joined: Tue Jul 15, 2003 3:37 pm

Re: Ultimate Doom Builder

Post by boris »

The step size for lights is set in the game configs, so you could make a custom one with different step sizes.
Kovnikel
Posts: 12
Joined: Sun Aug 17, 2025 7:10 am

Re: Ultimate Doom Builder

Post by Kovnikel »

In the script editor when I undo with ctrl-z it jumps to the bottom of the entire script file, although the undo function does work.
User avatar
Ravick
Posts: 2051
Joined: Sun Aug 22, 2010 10:59 pm
Location: Tubarão, Brasil
Contact:

Re: Ultimate Doom Builder

Post by Ravick »

I keep getting this crashing bug if i try to save and GZDoom is still running:
Spoiler:
boris
Posts: 776
Joined: Tue Jul 15, 2003 3:37 pm

Re: Ultimate Doom Builder

Post by boris »

Can't reproduce with the given info. Also the error says that it happens while autosaving, not when manual saving.
User avatar
Ravick
Posts: 2051
Joined: Sun Aug 22, 2010 10:59 pm
Location: Tubarão, Brasil
Contact:

Re: Ultimate Doom Builder

Post by Ravick »

boris wrote: Mon Aug 25, 2025 5:06 am Can't reproduce with the given info. Also the error says that it happens while autosaving, not when manual saving.
It happens when I try to save manually while the game is still running (testing the map).
How could I help to reproduce the bug? Which info should I collect? (My configs are in Portuguese, is it because of this?)

Also, I got this one some minutes ago:
Spoiler:
Post Reply

Return to “Creation, Conversion, and Editing”