François Mockers
François Mockers
Great that it works! And thanks for reporting back. Have fun with your *not-crashing* project now 🙂
I don't think this would close #1481. Of the three use cases mentioned there (helping system ambiguity checker, checking assumptions, allowing overlapping queries), it would only close the second one.
The error is saying there is already a transition ongoing, which you can see by `transition` not being `None`. It doesn't have the best name, it's `StateAlreadyQueued` as in "there's...
I think it's a bug that it was accepted before. https://github.com/bevyengine/bevy/pull/4890 is probably the source of your panic. setting a new state in `on_exit` was causing issues so controls where...
[wgpu](https://crates.io/crates/wgpu) 0.14 (and [naga](https://crates.io/crates/naga) 0.10) have been published!
@Aceeri any chance you can pick up the updates soon?
Just a comment describing how I tend to setup configuration: - Start with default values for config - Then try to read a config file in XDG config folder and...
I went with `smallvec` as it's already in tree
I have met the same issue. The following code can show it: ```rust use std::time::SystemTime; use stretch::geometry::Size; use stretch::style::*; fn main() -> Result { let mut stretch = stretch::node::Stretch::new(); let...