diff --git a/examples/README.md b/examples/README.md new file mode 100644 index 0000000..ae5d3ab --- /dev/null +++ b/examples/README.md @@ -0,0 +1,10 @@ +# cargo examples +This directory contains some cargo examples of using `bevy_pipe_affect` in basic bevy apps. +Clone the repo and run examples like: +```sh +$ cargo run --release --all-features --example example-name +``` + +Note that these cargo examples do not demonstrate complete coverage of `bevy_pipe_affect`'s features; they do not even demonstrate all of the `Effect` implementors. +For more code examples of `Effect`s, please explore the [`effects` module api reference](https://docs.rs/bevy_pipe_affect/0.3.0/bevy_pipe_affect/effects/index.html). +This is a good resource to discover what `Effect`s are available, and code examples are provided for all of them. diff --git a/release-please-config.json b/release-please-config.json index ba8bf95..99d1a87 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -12,7 +12,8 @@ "README.md", "book/src/README.md", "book/src/api-reference.md", - "src/lib.rs" + "src/lib.rs", + "examples/README.md" ], "changelog-sections": [ {"type": "feat", "section": "Features"},