-
I've upgraded to bevy 16.0. When a system has an invalid |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This was actually discussed recently in #18927. For now, I think the only way to panic is to unwrap Alternatively, you might be able to copy+paste the |
Beta Was this translation helpful? Give feedback.
This was actually discussed recently in #18927.
For now, I think the only way to panic is to unwrap
Query::single
like you mentioned.Alternatively, you might be able to copy+paste the
Single
type and implementation into your own code but remove the non-panicking validation logic.