Silas Bartha f76758ddea
All checks were successful
Build / Build (push) Successful in 46m49s
use cache in workflow
2025-03-17 20:45:59 -04:00
2025-03-17 19:09:19 -04:00
2025-03-17 20:45:59 -04:00
2024-12-01 22:08:20 -05:00
2024-12-10 14:56:41 -05:00
2024-11-30 00:36:01 +00:00
2025-03-17 19:09:19 -04:00
2025-03-17 19:09:19 -04:00
2024-12-01 22:49:22 -05:00
2024-12-10 14:56:41 -05:00

bevy_blacklight_material

Crates License Tag Build

A plugin for the Bevy Engine which adds a "blacklight" material that is revealed by spot lights marked with a Blacklight component.

Feel free to contribute if you want to improve this, it was thrown together pretty hastily so there's bound to be some errors or oversights.

Compatibility

Crate Version Bevy Version
0.1 0.14
0.2 0.15

Installation

crates.io

[dependencies]
bevy_blacklight_material = "0.2"

Using git URL in Cargo.toml

[dependencies.bevy_rustysynth]
git = "https://git.exvacuum.dev/bevy_blacklight_material"

Usage

In main.rs:

use bevy::prelude::*;

fn main() {
    App::new()
        .add_plugins((
            DefaultPlugins,
            BlacklightPlugin,
        ))
        .run();
}

Then you can create blacklight-emitting spotlights, and reveal-able surfaces, like this:

// Mesh with blacklight material
commands.spawn((
    //...
    MeshMaterial3d(asset_server.add(BlacklightMaterial::new(&asset_server, None, Color::WHITE))),
));


// Blacklight
// Requires `SpotLight`, but you might want to add one yourself
commands.spawn(Blacklight);

License

This crate is licensed under your choice of 0BSD, Apache-2.0, or MIT license.

Description
No description provided
Readme 101 KiB
Languages
Rust 66.8%
WGSL 33.2%