diff options
author | Silas Bartha <[email protected]> | 2024-06-04 13:01:27 -0400 |
---|---|---|
committer | Silas Bartha <[email protected]> | 2024-06-04 13:01:27 -0400 |
commit | d98878f3135bffb412dce9436c3b81cbe595a7a9 (patch) | |
tree | 05ea73f265236ebce4370ecbfd3efd268ddb07ec /README.md | |
parent | a294ec442b91e1006a28049cda9fcb82b52d0dc0 (diff) |
Removed toolchain config
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,4 +1,4 @@ -# grex_outline_post_process +# bevy_outline_post_process A plugin for the [Bevy](https://bevyengine.org) engine which adds an outline post-processing effect. @@ -25,8 +25,8 @@ grex_outline_post_process::components::OutlinePostProcessSettings { ### Using git URL in Cargo.toml ```toml -[dependencies.grex_outline_post_process] -git = "https://github.com/exvacuum/grex_outline_post_process.git" +[dependencies.bevy_outline_post_process] +git = "https://github.com/exvacuum/bevy_outline_post_process.git" ``` ## Usage @@ -34,13 +34,13 @@ git = "https://github.com/exvacuum/grex_outline_post_process.git" In `main.rs`: ```rs use bevy::prelude::*; -use grex_outline_post_process; +use bevy_outline_post_process; fn main() { App::new() .add_plugins(( DefaultPlugins, - grex_outline_post_process::OutlinePostProcessPlugin, + bevy_outline_post_process::OutlinePostProcessPlugin, )) .insert_resource(Msaa::Off) .run(); @@ -52,7 +52,7 @@ When spawning a camera: commands.spawn(( // Camera3dBundle... NormalPrepass, - grex_outline_post_process::components::OutlinePostProcessSettings { + bevy_outline_post_process::components::OutlinePostProcessSettings { weight: 2.0, threshold: 0.0, } |