Vladyslav Batyrenko
Vladyslav Batyrenko
Introduction of the a3d113ae099626a4a3999a6fc15b05d726d99c0c commit prevents Egui from resetting the `latest_pos` field of the `PointerState` struct, which makes it possible to continue dragging a slider, for example, when a cursor...
I can't always reproduce it, it's probably some kind of a race condition. ``` thread 'IO Task Pool (0)' panicked at 'called `Option::unwrap()` on a `None` value', /Users/mvlabat/.cargo/registry/src/github.com-1ecc6299db9ec823/bevy_networking_turbulence-0.3.3/src/transport.rs:209:55 stack backtrace:...
Sometimes Laminar sends duplicated reliable messages. Here's the code I tested reliable messages with: https://github.com/mvlabat/laminar_test_reliable It's built on `amethyst_net` (that's the simplest way I could make a working reproducible example)....
As far as I understand if a user tries to send a message and it fails to any reason, Laminar will try to resend it after getting 32 packets without...
Hi! I wanted to suggest adding an immutable variant of `Inspectable` trait, which would allow only viewing values (or probably just another trait function). There are some resources, particular components...
## Motivation This PR introduces a new derive macro inspired by specs' `#[derive(SystemData)]`, that can be used as follows: ``` pub struct TestA(usize); pub struct TestB(usize); #[derive(SystemResources)] pub struct TestSystemResources,...
Consider the following Service: ```proto service Crow { rpc Hello (google.protobuf.Empty) returns (Caw); } ``` This is what compiler generates for it: ```rust pub trait Crow { fn hello(&mut self,...
It would be nice to have a read-only API for EntityMaps. Right now every member is marked as `pub(crate)`, so there's no way to access them. My particular use-case is...
I was able to pass some inputs that made `convex_decomposition` panic. I was testing it in 2D, and one of the ways to make it panic was to pass several...