aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLibravatar Silas Bartha <silas@exvacuum.dev>2024-06-04 13:01:27 -0400
committerLibravatar Silas Bartha <silas@exvacuum.dev>2024-06-04 13:01:27 -0400
commitd98878f3135bffb412dce9436c3b81cbe595a7a9 (patch)
tree05ea73f265236ebce4370ecbfd3efd268ddb07ec /README.md
parenta294ec442b91e1006a28049cda9fcb82b52d0dc0 (diff)
Removed toolchain config
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 56b74fa..117333a 100644
--- a/README.md
+++ b/README.md
@@ -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,
}