Skip to content
Merged

v0.3 #31

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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ bevy_polyline = "0.3"
```

You add it as a plugin to your app:
```rust
```rs
app.add_plugin(PolylinePlugin);
```

And then you can add some Polylines through PolylineBundle
```rust
```rs
fn setup(
mut commands: Commands,
mut polyline_materials: ResMut<Assets<PolylineMaterial>>,
Expand Down Expand Up @@ -82,6 +82,7 @@ We intend to track the `main` branch of Bevy. PRs supporting this are welcome!

| bevy | bevy_polyline |
| ---- | ------------- |
| 0.8 | 0.3 |
| 0.7 | 0.2 |
| 0.6 | 0.1 |

Expand Down