Oli Scherer

Results 708 comments of Oli Scherer

That's not possible in serde without first parsing the entire subtree. I don't really want to support interleaved sequences.

Sounds reasonable to ignore unknown fields in xml. iirc json does the same

for now you can probably stick a `xml::Value` into the field and everything should work (although inefficiently)

At that point you're probably better off just writing your own async_serde crate, as it will not really share anything with serde. Afaict you'll need your own `Serialize` and `Deserialize`...

Ah yes, the derive macros could be used to generate async impls together with the sync ones. While it's all possible, I don't think we'll be taking on the extra...

> have no doubts that my pull request will be considered on its merits without preconceptions when it arrives. We don't have the review capacity for more than trivial features....

we still would need `space.translation_to_grid`, we would just not need the `space` argument anymore. If we want to go down this route, we should rewrite the `big_space` crate to instead...

> The camera speed should depend on the height above the ground (the Earth-Sphere surface). How to get the height? a bevy system for changing the speed depending on the...

https://github.com/hankjordan/bevy_save looks promising as a framework for handling this correctly on all platforms

well, the Args struct contains other settings, too. like "xr". You could add a `geo_view` field to the struct and use that for the fields that are geo-view specific