Hotline is a live coding tool where you can editor code, shaders, render pipelines, render graphs and more without restarting the application. It provides a host
application which remains running for the duration of a session. Code can be reloaded that is inside the dynamic lib
and render pipelines and shaders can be edited and hot reloaded through pmfx
files.
Currently Windows with Direct3D12 is the only suppported platform, there are plans for macOS, Metal, Linux Vulkan and more over time.
pmbuild and pmfx-shader are required for building data and shaders, they are bundled with the repository.
If you are using hotline from crates.io then the executables are not bundeled because this exceeds the 10mb package size limit. You can clone this repository to get the executables (stick them into hotline_rs/bin/win32
) or download the pmbuild release manualy and then boostrap the rest of the process:
./build.cmd update
The config.jsn is used to configure pmbuild
build jobs and tools, if you wanted to manually configure the setup.
First build the live lib
and then build the host
executable and data (data will be built automatically when using cargo build
). Then run the host
:
text
cargo build -p lib
cargo build
cargo run host
Once the host
is running, any changes made to the source code in lib.rs or the pipelines will be automatically reloaded into the running application.
There are a few standalone examples of how to use the lower level components of hotline (gfx, app, av
). You can build and run these as follows:
text
cargo build --examples
cargo run --example triangle
There are included tasks
and launch
files for vscode including configurations for the host and the examples.
Contributions of all kinds are welcome, you can make a fork and send a PR if you want to submit small fixes or improvements. Anyone interseted in being more involved in development I am happy to take on people to help with project of all experience levels, especially people with more experience in Rust. You can contact me if interested via Twitter or Discord.