Timothy Davis
Timothy Davis
### `eww debug` output Here ``` App { scope_graph: ScopeGraph { graph: ScopeGraphInternal { last_index: ScopeIndex(442), scopes: { ScopeIndex(439): Scope { name: "desktop-label", ancestor: Some( ScopeIndex(438), ), data: { "desktop":...
Hey, I was experiencing a similar issue, having an object that only gains a collider after some amount of time. If you change the sleeping value of the `Sleeping` component...
Hi. I'm not sure if this is what you're looking for, but I was just looking for something similar myself. I found [the contact graph](https://www.rapier.rs/docs/user_guides/bevy_plugin/advanced_collision_detection#the-contact-graph). If you look at the...
Hi, @cameron1024. I had another go at this. The code you're looking for I would say is the following: ```rust #[derive(Debug, Component)] pub struct OnGround(pub bool); pub fn update_on_ground( floor:...