Skip to content
This repository has been archived by the owner on Dec 27, 2020. It is now read-only.

NovaMods/nova-renderer-archive

Repository files navigation

ova Renderer

Github Actions Discord Chat

Purpose

We set out to make a completely new renderer for Minecraft aimed at giving more control and vastly better tooling to shaderpack developers.

QuikFAQ

  • 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

Development Status

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.

Developer Setup

Contributing.

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:

Windows

# 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

Unix

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:

Please contact us on Discord if you want to help! We're very friendly 😄

About

Archive of the first couple years of nova development, including the first 4 rewrites. CURRENT CODEBASE: https://github.com/NovaMods/nova-renderer

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published