rezural

Results 14 comments of rezural

The actual only relevant commit is https://github.com/mvlabat/bevy_egui/pull/50/commits/53c1773583f2dfc2a8f8bc2aa93de1c9c5fd05ec

This shows an small example app that shows suppression of events, copy this into example/simple.rs, run with: `cargo run --example simple --features=drop_events_on_focus` ```rust use bevy::prelude::*; use bevy_egui::{egui, EguiContext, EguiPlugin}; fn...

One thing I only just thought of, is to leave most of the event consumption code the same in process_input system. And clear the input events in a system just...

Ok, good to hear. I will ask around in bevy if there are any ways to accomplish this using the event/input system. If I manage to get something working, I...

Hrm, How about we leave it with the (non-idiomatic) approach for now? I am thinking of solving this on the Ply-rs side, i.e. adding a data marshalling interface for when...

Hey, I'll have a look at this soon, been moving around the last week, so it has been hard to get time at the computer.. Cheers!

So we should probably close this. Apologies, it has been quite a long time ago. IIRC I had a look into making it more idiomatic, but it was a PITA,...

I have isolated this into a unit test, which shows the problematic behaviour: https://github.com/dimforge/salva/pull/33 Cheers

Yes, that is what I am referring to. Also, to allow for moving of objects, the objects need to be proxies `Object > Relations > Make Proxy`. If you have...