File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2228,8 +2228,8 @@ doc-scrape-examples = true
2228
2228
required-features = [" bevy_mesh_picking_backend" , " configurable_error_handler" ]
2229
2229
2230
2230
[package .metadata .example .error_handling ]
2231
- name = " Fallible Systems "
2232
- description = " Systems that return results to handle errors"
2231
+ name = " Error handling "
2232
+ description = " How to return and handle errors across the ECS "
2233
2233
category = " ECS (Entity Component System)"
2234
2234
wasm = false
2235
2235
Original file line number Diff line number Diff line change @@ -311,9 +311,9 @@ Example | Description
311
311
[ Dynamic ECS] ( ../examples/ecs/dynamic.rs ) | Dynamically create components, spawn entities with those components and query those components
312
312
[ ECS Guide] ( ../examples/ecs/ecs_guide.rs ) | Full guide to Bevy's ECS
313
313
[ Entity disabling] ( ../examples/ecs/entity_disabling.rs ) | Demonstrates how to hide entities from the ECS without deleting them
314
+ [ Error handling] ( ../examples/ecs/error_handling.rs ) | How to return and handle errors across the ECS
314
315
[ Event] ( ../examples/ecs/event.rs ) | Illustrates event creation, activation, and reception
315
316
[ Fallible System Parameters] ( ../examples/ecs/fallible_params.rs ) | Systems are skipped if their parameters cannot be acquired
316
- [ Fallible Systems] ( ../examples/ecs/error_handling.rs ) | Systems that return results to handle errors
317
317
[ Fixed Timestep] ( ../examples/ecs/fixed_timestep.rs ) | Shows how to create systems that run every fixed timestep, rather than every tick
318
318
[ Generic System] ( ../examples/ecs/generic_system.rs ) | Shows how to create systems that can be reused with different types
319
319
[ Hierarchy] ( ../examples/ecs/hierarchy.rs ) | Creates a hierarchy of parents and children entities
You can’t perform that action at this time.
0 commit comments