Mark Wainwright
Mark Wainwright
Closes #492
Hi. Thanks for making this plugin - it's unbelievably useful. For my game I've built quite an ergonomic wrapper around it and I think might be worth adding something like...
Hi I recently switched my app to using `in_fixed_schedule` and sometimes (generally when entities are being deleted) `ContactPairView::collider2` panics on unwrapping a `None` value. For context, I'm trying to get...
Closes https://github.com/rust-num/num-traits/issues/250 This adds `CheckedSum` and `CheckedProduct` traits as well as blanket implementations for them. It also adds `CheckedSumIter` and `CheckedProductIter` traits and blanket implementations for those as that provides...
The Rust language team decided not to add `CheckedSum` and `CheckedProduct` traits to core https://github.com/rust-lang/rust/pull/95485 but it was suggested that they be added here. These traits allow you to add...
Hi. I'm not sure if this is intentional or not but the Display implementation ignores all formatting parameters ```rust println!("ab{:>2}", "c"); //prints "ab c" println!("ab{:>2}", Ustr::from_str("c").unwrap()); //prints "abc" ``` I...
## What problem does this solve or what need does it fill? At the moment `DetectChanges` is implemented for `Res`, `ResMut`, and some other system parameters but not for tuples...
Hi. I'm updating from 3.4 to 4.0 and there doesn't seem to be a good replacement for the `Tabs` component. The `TabList` component gives me the tab headers but no...