jabu
jabu
Isn't this already possible? Something like this ```rust use bevy::{input::InputSystem, prelude::*}; use bevy_egui::{egui, EguiContext, EguiPlugin, EguiSystem}; #[derive(Default)] struct EguiBlockInputState { wants_keyboard_input: bool, wants_pointer_input: bool, } fn main() { App::new() .add_plugins(DefaultPlugins)...
I have a very simple repro of this bug. See here (potential flashing lights warning): https://jabuwu.github.io/bevy_wasm_bug/wasm/index.html The color becomes a noticeably darker clear color than the usual default clear color,...
I agree with these changes. Observing some discussions in the Discord, there's a lot of confusion around the differences between base sets and schedules. I wonder if there will be...
It works for me if I follow the advice [here](https://github.com/sveltejs/svelte-loader#extracting-css). I'm using the [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin#getting-started) and added the lines described there to my webpack file (both the plugin and the loader)....
> Gameplay systems should effectively always be run in the fixed time step: only rendering-related code should be processed each frame. The impact of this statement is fairly substantial isn't...
Oh, I see. Indeed, `as_encoded_bytes` seems to do the trick. The code I posted works on Windows and Mac, according to my testing. I'm happy to make a PR for...
Something that needs to be mentioned in this discussion is the role of [ColorSync](https://en.wikipedia.org/wiki/ColorSync) and how [colorspace](https://developer.apple.com/documentation/quartzcore/cametallayer/colorspace) is configured for the Metal layer. At least as far as MacOS goes,...
Thank you for the very thorough response. That's pretty huge, and I feel bad for doubting you guys. I would categorize the drawbacks as three things: - Linking in C++...
The two issues I've ran into so far: - WASM does not have life before main and seems to hate the RTTI consts (specifically, it hates their constructors initializing the...
Please take your time. I'm working through it slowly, as well.