-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deterministic fallible_systems example #17813
Deterministic fallible_systems example #17813
Conversation
@@ -2159,13 +2159,13 @@ wasm = false | |||
name = "fallible_systems" | |||
path = "examples/ecs/fallible_systems.rs" | |||
doc-scrape-examples = true | |||
required-features = ["bevy_mesh_picking_backend"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this needed? Example seems to work if I remove it and I see bevy_mesh_picking_backend
in default
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
strictly speaking, no, it's a default feature
Is the point of the sampled points just to add some more I find it sort of confusing that they are pickable. I went down a tiny rabbit hole trying to figure out why the points sometimes separated from the sphere. |
I agree, that is unfortunate. I wanted to have some way to trigger an observer that – under certain conditions – results in an error. This was a way I could think of doing that, but I'm open to changing it to something that better illustrates the point we're trying to make. |
Objective
fallible_systems
example is not deterministicSolution