We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
run_system_cached
Result
Bevy 0.16
commands.run_system_cached(my_system);
pub fn my_system( // SNIP ) -> Result {
This causes an error on run_system_cached, because my_system is now a system with output type Result instead of ().
my_system
()
This is caused by the 0.16 system Result and ? rework.
?