We set out to make a completely new renderer for Minecraft aimed at giving more control and vastly better tooling to shaderpack developers.
- Nova is a replacement for Minecraft's renderer built for shaderpack support and more shaderpack features. It is not:
- Something to make Minecraft run faster
- For older computers
- A rewrite of the tick system
- A rewrite of the audio system
- Anything to do with the MC server
Nova Renderer is a passion project by the developers and as such does not have any set deadlines or release dates. We are still in early development of the multi-backend rewrite and things may change at any moment. That all being said, it is still in quite active development.
Nova is built the same way most cmake projects are built. However, git submodules need to be cloned:
git submodule update --init --recursive
From there, standard cmake build:
# Generate Visual Studio Project
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -G "Visual Studio 16 2019" -Wno-dev
# Build from command line, or open into Visual Studio
cmake --build build
If you have the ninja build tool, it is the recommended way of building.
# Generate Visual Studio Project
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -GNinja -Wno-dev
# Build from command line, or open into Visual Studio
ninja -C build
If you don't have ninja, use regular make.
# Generate Ninja
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -Wno-dev
# Build from command line
make -C build -j$(nproc)
Please read the following to help get a feel for the project:
- The Project Charter.
- Git Rules. These must be followed for your PR to be accepted.
Please contact us on Discord if you want to help! We're very friendly 😄