You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If one of the UV indices in a ring of a CompositeSurface texture is null, cjval panics. This only happens if the other UV indices in the same ring are not null.
This file panics: cjfake_invalid_0_copy.json
But if you change the null in L31 to 1, the file is valid. Note that having a null for the whole ring is fine, like in case of the first surface.
If one of the UV indices in a ring of a CompositeSurface texture is
null
, cjval panics. This only happens if the other UV indices in the same ring are not null.This file panics:
cjfake_invalid_0_copy.json
But if you change the
null
in L31 to1
, the file is valid. Note that having anull
for the whole ring is fine, like in case of the first surface.The cause of the panic is the unwrap in
cjval/src/lib.rs
Line 1491 in afeb6e3
cjval/src/lib.rs
Line 1482 in afeb6e3
null
is hidden in the ring, cjval tries to unwrap aNone
.The text was updated successfully, but these errors were encountered: