Félix Lescaudey de Maneville
Félix Lescaudey de Maneville
> Very nice. I'm happy with this now, and would love to see the rest of 2D unified under this approach. Adding this to Cart's Attention Board. Thanks, I opened...
I rebased this MR upon #5103 in order to use the same logic and components, I will rebase it on `main` once #5103 is merged and only keep the UI...
Rebased on #5103
Rebased on #5103
A few other crates have the streaming transaction support: - The [arangors](https://github.com/fMeow/arangors) driver - The [aragog](https://gitlab.com/qonfucius/aragog) ODM (built on arangors)
using either crossbeam-channels or flume you can wait for the channel in a non blocking way with `try_iter`
Chainging the `hex_size` in the `hex_grid` example you can set irregular hexagon sizes but they will look scaled and not sliced like your example. I can look into custom scaling...
I worked on this, and it's a headache. Making the hexagons scaled along a vertex is not a problem, the issue comes from adapting the layout which is based on...
There is also the [wide](https://docs.rs/wide/latest/wide/index.html) crate, used by `bevy_rapier`, worth exploring probably
Rust doesn't allow recursive structs without a `Box`. Yor example can't compile unless your struct looks like: ```rust pub struct Foo { pub foos: Vec, } ``` Which cause a...