Richard Jones

Results 20 issues of Richard Jones

need to check for changed .hrl files in the diff command too, then decide which modules to reload based on inclusion of the hrl

bug

Not possible at the moment. Have to manually edit appups after generation. Could use a module attribute like: ``` -relflow_priority(100). ``` or perhaps: ``` -relflow_depends(other_util_module). ``` Check how knit does...

enhancement

I had mappings for vmargs node name and distributed_cookie marked as hidden, but the release fails to start because the bin script checks for them in the generated conf file,...

With very dense colliders / very small inverse masses, the inverse mass sum was < EPSILON, and I was getting no collision response. Slow dynamic bodies with a high mass...

C-Bug
A-Dynamics

All the `bevy_xpbd` components I'm using implement `PartialEq` except for `Collider`. Having `PartialEq` is really useful for various netcode bits that check what's changed in generic systems. `Collider` is a...

enhancement

should we increment the clock as part of timewarp sets? might be less error prone than letting the consumer do it. however it might not be so easy to integrate...

https://doc.rust-lang.org/rustdoc/write-documentation/the-doc-attribute.html `#![doc = include_str!("../README.md")]` probably nicer

need a benchmark of a few k entitites with continually updating components, like in a physics simulation. then insert into the past a few frames back and resimulate a bunch...

# Objective FixedJoints currently apply entity1's `Rotation` to entity2. This change allows you set a fixed rotation offset to entity2's `Rotation`, relative to entity1. Here's the output difference in the...

C-Enhancement
A-Dynamics

had a couple of crashes like this: ``` thread 'Compute Task Pool (0)' panicked at lightyear-2cfb5e6660946fe3/356f61d/lightyear/src/inputs/leafwing/input_buffer.rs:188:53: attempt to subtract with overflow ``` https://github.com/cBournhonesque/lightyear/blob/main/lightyear/src/inputs/leafwing/input_buffer.rs#L188 something like this maybe? ```rust if tick...

C-Bug
A-Input