Jakob Hellermann
Jakob Hellermann
I've added support for RangeInclusive in 0.26.0: https://github.com/jakobhellermann/bevy-inspector-egui/commit/fb7bb148bde469da4efa8310ce183cb4b9aeb690 > Same problem here. And due to the orphan rule I can not implement the trait for RangeInclusive myself. For the record,...
https://github.com/jakobhellermann/bevy_editor_pls/assets/22177966/6ea188b2-bd12-49bf-ba1a-e7767af33f8b Hm, I can't reproduce, for me it works fine. From the panic it looks like there is no `ActiveEditorCamera` but I don't know how that can happen :/
 I'm not sure this is working as expected, shouldn't this only include the special systems with that filter?
Also for the size over the network: gzip makes a huge difference (something like 14mb -> 3-4mb). You can also try removing debug info and running wasm-opt: https://rustwasm.github.io/book/reference/code-size.html
As far as I understand this is unavoidable, `wasm-bindgen` doesn't have a stable API so you need to ensure that the versions match. So far I haven't had a problem...
> It might be obvious to you, but the last 2 times it happened I wasted a ton of time trying to track down how to fix it. That's very...
I think that was from way back when `Inspectable` was a custom derive, instead of using bevy's reflect functionality. Currently you can only display everything read-only ([ui_for_reflect_readonly](https://docs.rs/bevy-inspector-egui/latest/bevy_inspector_egui/reflect_inspector/struct.InspectorUi.html#method.ui_for_reflect_readonly)), not set a...
Fair :smile: I've started using the underscore convention for other crates as well. But I _think_ crates.io doesn't let you rename a crate that way, so that ship might have...
I think it's probably not worth the hassle, I just learned the lesson for future crates where I'm gonna use the different naming convention
That's pretty cool, thanks! Is there anything missing here functionality-wise that is still WIP or just polish? (making the function names consistent with the other graphs, and making the colors...