William Linna

Results 91 comments of William Linna

Thanks for the info. I'll report there

A new version of rs-tiled addressing the issue has been published. I haven't tried it with bevy_tiled yet though (cargo-lock specifies 0.9.4 anyway)

Alright, I found an easy way to update a transitive dependency (yay): `cargo update -p tiled --precise 0.9.5` Now it works. This issue can be closed once you upgrade tiled....

I also encountered this issue, but in my case I opened them such that the second window is opened only after the first one has closed. The version of kiss3d...

Found it! I was able to create a small test case. The bug is in serde_json. ``` let json_str2 = &[ b'"', b'\xCE', b'\xF8', b'"']; let v2: serde_json::Result = serde_json::from_slice(json_str2);...

At least with the recently published 1.0.64, json parsing doesn't panic anymore, just returns a `Result::Err`. Though the file works with Three.js, it doesn't work with Blender, and the error...

`Cargo.toml` of this repo doesn't require `1.0.64` or higher of `serde_json`. I'm not sure.. maybe that version should be bumped to make sure that the old version won't be installed?

Just tested this on parry3d 0.9, and the bug remains. The numbers remain unchanged

Just tested this on `parry3d 0.9`, and the bug remains. The numbers haven't changed

Thanks for your quick response I need to process P and F elements. My workaround is to remove Pnts and Faces elements when their end event is raised. It's not...