Richard Jones
Richard Jones
I'm using bevy_pancam along with a left and right sidebars with egui. but no central panel (how did you get bevy to render into a central panel?) Here's how i...
did you enable the "bevy_egui" feature of pancam? ie: ``` bevy_pancam = {version = "0.16.0", features = ["bevy_egui"]} ``` this supresses input events while egui has the mouse. this works...
Install `syntaxerl` and configure ALE to use it, per the bottom of the README here: https://github.com/ten0s/syntaxerl This will pick up the config from rebar or erlang.mk and everything will just...
this change is so i can use a fixed joint to land on asteroids like this, maintaining the upright ship rotation: https://github.com/user-attachments/assets/c7b834e0-124c-4805-9a38-72223b3a5660
not a real fix, but i doubled the size to "fix" my problem, and added a warning https://github.com/rj/ehttp/blob/chunkier/ehttp/src/streaming/native.rs#L57
same crash here in `get_last` https://github.com/cBournhonesque/lightyear/blob/main/lightyear/src/inputs/leafwing/input_buffer.rs#L210 and probably a similar one at least in `get_last_with_tick`
hmm. this is in the 'sandbox' version of my client/server game, which although it adds the lightyear plugins and components, just like the client and server code, it doesnt ever...
https://github.com/cBournhonesque/lightyear/blob/main/lightyear/src/inputs/leafwing/input_buffer.rs#L102 too, in `set()`
i believe it's happening when buffer_len (u16) reaches `i16::MAX + 1`, then the cast `as i16` converts it to `i16::MIN`, which you can't subtract 1 from. (after approx. 10mins at...
I'm avoiding the crash by adding the following system when running under my local sandbox environment, which doesn't start the lightyear server or client, it just adds the plugins. Not...