aecsocket
aecsocket
### Is your feature request related to a problem? `Chunk` doesn't have a `isSectionEmpty(int)` method to check if a 16x16x16 slice of that chunk is just filled with air ###...
Reproduction: https://github.com/aecsocket/bevy-egui-enter-bug `cargo run --target wasm32-unknown-unknown` ```rs fn main() { App::new() .add_plugins(( DefaultPlugins.set(WindowPlugin { primary_window: Some(Window { prevent_default_event_handling: false, ..default() }), ..default() }), EguiPlugin, )) .add_systems(Update, ui) .run(); } //...
Fixes https://github.com/projectharmonia/bevy_replicon/issues/310. I've tested this with the bevy_replicon_renet test app, and made appropriate changes to preludes and imports so that the renet transport code doesn't have to be modified at...
In some cases, you don't want the server to replicate entities to the client at all. For example, if you just started a connection between client and server, you may...
Right now, I am having some problems with the developer experience when targeting multiple targets (wasm/native) with xwt. Even though the goal of xwt is to be cross-platform, it still...
When creating an `xwt_web_sys::Connection` on Firefox, it fails with a `TypeError: ReadableStream.getReader: Trying to read with incompatible controller`, which likely comes from `web_sys_stream_utils` creating a BYOB stream reader for reading...
## How can Bevy's documentation be improved? [`bevy_animation::AnimationPlayer`](https://docs.rs/bevy_animation/latest/bevy_animation/struct.AnimationPlayer.html) doesn't explain: - how you should create an animation player - if you even *should* create an animation player manually - how...
**NOTE: Also see https://github.com/bevyengine/bevy/pull/15548 for the serializer equivalent** # Objective The current `ReflectDeserializer` and `TypedReflectDeserializer` use the `TypeRegistration` and/or `ReflectDeserialize` of a given type in order to determine how to...
**NOTE: This is based on, and should be merged alongside, https://github.com/bevyengine/bevy/pull/15482.** I'll leave this in draft until that PR is merged. # Objective Equivalent of https://github.com/bevyengine/bevy/pull/15482 but for serialization. See...
**Describe the bug** When a window locks the cursor and later releases it, this causes the cursor to stay locked, or puts it into some sort of illegal state, which...