mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-01-31 12:50:52 +00:00
A map editor for UDMF levels in SRB2, forked from Ultimate Doom Builder.
634225b77b
UDBScript: Map class: the getSidedefsFromSelectedLinedefs() method now correctly only returns the Sidedefs of selected Linedefs in visual mode (and not also the highlighted one) UDBScript: Map class: added a new getSidedefsFromSelectedOrHighlightedLinedefs() method as the equivalent to the other getSelectedOrHighlighted*() methods UDBScript: Sector class: added new floorSelected, ceilingSelected, floorHighlighted, and ceilingHighlighted properties. Those are mostly useful in visual mode, since they always return true when the Sector is selected or highlighted in the classic modes. The properties are read-only UDBScript: Sidedef class: added new upperSelected, middleSelected, lowerSelected, upperHighlighted, middleHighlighted, and lowerHighlighted properties. Those are mostly useful in visual mode, since they always return true when the parent Linedef is selected or highlighted in the classic modes. The properties are read-only UDBScript: added new example to apply textures for floor/ceiling and upper/middle/lower texture for selected map elements UDBScript: updated documentation |
||
---|---|---|
.github/workflows | ||
Build | ||
Documents | ||
Help | ||
Setup | ||
Source | ||
UpdaterConfig | ||
.gitignore | ||
build_git_generic.cmd | ||
build_git_x64 - experimental.cmd | ||
build_git_x64.cmd | ||
build_git_x86.cmd | ||
build_setup_x64.cmd | ||
build_setup_x86.cmd | ||
builder.sh | ||
Builder.sln | ||
Builder.sln.DotSettings.user | ||
BuilderMono.sln | ||
ChangelogMaker.exe | ||
Clean Rebuild.bat | ||
Compile Help.bat | ||
fixpermissions.cmd | ||
LICENSE.txt | ||
Makefile | ||
README.md | ||
VersionFromEXE.exe | ||
VersionFromGIT.exe |
System requirements:
- 2.4 GHz CPU or faster (multi-core recommended)
- Windows 7, 8 or 10
- Graphics card with OpenGL 3.2 support
Required software on Windows:
Building on Linux:
These instructions are for Debian-based distros and were tested with Debian 10 and Ubuntu 18.04. For others it should be similar.
Note: this is experimental. None of the developers are using Linux as a desktop OS, so you're pretty much on your own if you encounter any problems with running the application.
- Install Mono. The
mono-complete
package from the Debian repo doesn't includemsbuild
, so you have to installmono-complete
by following the instructions on the Mono project's website: https://www.mono-project.com/download/stable/#download-lin - Install additional required packages:
sudo apt install make g++ git libx11-dev mesa-common-dev
- Go to a directory of your choice and clone the repository (it'll automatically create an
UltimateDoomBuilder
directory in the current directory):git clone https://github.com/jewalky/UltimateDoomBuilder.git
- Compile UDB:
cd UltimateDoomBuilder && make
- Run UDB:
cd Build && ./builder
Links:
More detailed info can be found in the editor documentation (Refmanual.chm)