Alex Saveau
Alex Saveau
> `` and `` are neither phrasing nor flow content tags so should not inherit none of these interfaces I believe that's partially incorrect. I've been looking at [the spec](https://www.google.com/url?q=https://html.spec.whatwg.org/multipage/tables.html%23the-th-element&sa=D&usg=AFQjCNGbefmIsz6wqACFsjtOF1a8UEggCQ)...
Extending this idea a little further, you could potentially output the help as markdown with header sections for each command which could then be used as an autogenerated docs website....
This is really great, thank you! Implemented it here for the curious: https://github.com/SUPERCILEX/ftzz/commit/734d0e39d5671e75fae6e984c0e740b4adfbc68a
Some notes: using the `wrap_help` feature breaks things — this could probably be fixed by disabling wrapping when some env var is detected, but eh that'll be finicky. A gitattribute...
This happened: https://github.com/rust-lang/hashbrown/pull/342
I've had the same issue, not sure if it's still happening though. Are there any other logs other than `journalctl` I can look for if it happens again? 
This started happening for me again, and a reboot seems to fix it. That makes me think it has something to do with suspending.
Hmmm, no I didn't use ActiveCollisionTypes. Should we be using `STATIC_STATIC` maybe? BTW, I'm not quite sure what you mean by "without parents attached." This is the code we're using:...
Ok, just tried `insert(ActiveCollisionTypes::STATIC_STATIC)` on all my colliders but no dice.
We've been using the colliders like this: ```rust let foo = rapier_context .intersection_with_shape( collider_transform.translation, collider_transform.rotation, collider, BAG_BOUNDARY_COLLIDER_GROUP.into(), None, ); ``` Unfortunately I can't check the debug renderer because of #157...