Open alice-i-cecile opened 1 year ago
Use the methods implemented in https://github.com/bevyengine/bevy/pull/6751 to a) reduce rightward drift and b) reduce panics across systems.
Look for .unwrap and if let to scan for places where this pattern could be used.
if let
Blocked until we upgrade to Bevy 0.10.
One if-let-chains are stabilized, that can also help in some places.
if-let-chains
Use the methods implemented in https://github.com/bevyengine/bevy/pull/6751 to a) reduce rightward drift and b) reduce panics across systems.
Look for .unwrap and
if let
to scan for places where this pattern could be used.Blocked until we upgrade to Bevy 0.10.