Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
@@ -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). <!-- x-release-please-version -->
This is a good resource to discover what `Effect`s are available, and code examples are provided for all of them.
3 changes: 2 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down
Loading