2024-04-24 23:36:16 -04:00
2024-04-23 13:20:51 -04:00
2024-04-23 13:20:51 -04:00
2024-04-23 16:17:07 -04:00
2024-04-24 23:36:16 -04:00
2024-04-23 13:20:51 -04:00
2024-04-23 13:20:51 -04:00
2024-04-24 23:36:16 -04:00
2024-04-23 14:20:24 -04:00
2024-04-23 14:20:24 -04:00
2024-04-23 17:23:01 -04:00

grex_outline_post_process

A plugin for the Bevy engine which adds an outline post-processing effect.

Note: This is a full-screen post process effect and cannot be enabled/disabled for specific objects.

Screenshots

Configuration Used:

grex_outline_post_process::components::OutlinePostProcessSettings {
    weight: 2.0,
    threshold: 0.0,
}

Compatibility

Crate Version Bevy Version
0.1 0.13

Installation

Using git URL in Cargo.toml

[dependencies.grex_outline_post_process]
git = "https://github.com/exvacuum/grex_outline_post_process.git"

Usage

In main.rs:

use bevy::prelude::*;
use grex_outline_post_process;

fn main() {
    App::new()
        .add_plugins((
            DefaultPlugins,
            grex_outline_post_process::OutlinePostProcessPlugin,
        ))
        .insert_resource(Msaa::Off)
        .run();
}

When spawning a camera:

commands.spawn((
    // Camera3dBundle...
    NormalPrepass,
    grex_outline_post_process::components::OutlinePostProcessSettings {
        weight: 2.0,
        threshold: 0.0,
    }
));

This effect will only run for cameras which contain this component.

Description
No description provided
Readme 668 KiB
Languages
Rust 76.5%
WGSL 23.5%