Jeff Parsons
Jeff Parsons
I'm working with hundreds of `.proto` files, so it's not practical for me to manually set up a module hierarchy to mirror the protobuf package hierarchy. Some of these `.proto`...
This is a follow-up to https://github.com/dimforge/bevy_rapier/pull/51 It appears that internal edges in tri-mesh colliders can sometimes generate contacts that don't faithfully reflect the geometry of the mesh. Quoting @sebcrozet from...
There are bunch of dependencies that have new versions out with breaking changes. I'll probably upgrade each of these in separate PRs.
This is not the "a real game you'd want to play" release, but rather the very first release where it's technically possible to play and tell who is winning. Mandatory:...
At the moment I have a single global nphysics world: ```rust /// `World`-global resource for nphysics `World`. pub struct WorldResource { pub world: World, } ``` But all coordinates given...
I'm planning a bit of a clean-up/refactor of what is currently in the `globe` module. The first part will be to move everything that relates purely to our [Discrete Global...
Needs guidelines like... - For anything that's not trivial or a bug fix, please open an issue to discuss first. - Please try to make the smallest practical change. And...
Originally discussed on Zulip here: https://bytecodealliance.zulipchat.com/#narrow/stream/217126-wasmtime/topic/Sharing.20generated.20code.20between.20same.20interface.20import.2Fexport It would sometimes be convenient to share the generated types between imports and exports of an interface, e.g. if one component calls the host...
I have some code like this in a function: ```rust repo.odb() .context("Failed to get the repo's object database") .unwrap() .add_new_mempack_backend(999) .context("Failed to create new mempack ODB backend") .unwrap(); ``` So...
My understanding is that various types like `Tree` hold references to internal Sled structures, so a database will remain "open" until all instances of such types are dropped, and it's...