We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Occasionally, you need to create system closures that can fail. For example, when creating pointer callbacks in bevy_mod_picking:
bevy_mod_picking
On::<Pointer<Click>>::run( |event: Listener<Pointer<Click>>, ...| -> anyhow::Result<()> { ... Ok(()) } )
Maybe a macro syntax can be used for this:
sysfail!(|...| -> anyhow::Result<()> { ... })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Occasionally, you need to create system closures that can fail. For example, when creating pointer callbacks in
bevy_mod_picking
:Maybe a macro syntax can be used for this:
The text was updated successfully, but these errors were encountered: