Crates.io | tweak_runner |
lib.rs | tweak_runner |
version | |
source | src |
created_at | 2023-11-03 07:09:36.976959 |
updated_at | 2024-12-10 04:36:55.415624 |
description | a runner for the tweak shader library. |
homepage | |
repository | |
max_upload_size | |
id | 1023890 |
Cargo.toml error: | TOML parse error at line 17, column 1 | 17 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
A simple demo application for the tweak shader library. It watches changes to a tweak shader file and displays errors as they arise. A few examples are available under tweak_shader_examples
in the root directory.
The ui is powered by Egui.
runner --file <tweak_shader_file>
### Building
```bash
cargo build
and
cargo run -- file tweak_shader_examples/<demo_file.fs>
To run the demo application.
if you want to use audio or video then the runner application requires the ffmpeg library installed due to the ffmpeg_next crate. Please see the platform specific build instructions for ffmpeg_next.
cargo build --features audio video