Remove dead links to example code in the bevy_ecs README (#14899)

We elected to remove these links instead of keeping them updated or
pinning them to latest.
Closes #14707
This commit is contained in:
Cian O 2024-08-24 06:43:18 -07:00 committed by GitHub
parent 3cf70ba4f9
commit cccc1137b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -109,8 +109,6 @@ fn print_time(time: Res<Time>) {
}
```
The [`resources.rs`](examples/resources.rs) example illustrates how to read and write a Counter resource from Systems.
### Schedules
Schedules run a set of Systems according to some execution strategy.
@ -224,8 +222,6 @@ fn system(time: Res<Time>) {
}
```
The [`change_detection.rs`](examples/change_detection.rs) example shows how to query only for updated entities and react on changes in resources.
### Component Storage
Bevy ECS supports multiple component storage types.
@ -305,8 +301,6 @@ fn reader(mut reader: EventReader<MyEvent>) {
}
```
A minimal set up using events can be seen in [`events.rs`](examples/events.rs).
### Observers
Observers are systems that listen for a "trigger" of a specific `Event`: