dis-da-mor

Results 10 comments of dis-da-mor

> do you know if the formats supported depend on the feature flag enabled, or if those are only used when decoding files? As far as I know you could...

> Generic types should not have a single static UUID. I'm pretty sure they don't, this macro generates the same code as the derive, where a generic type's UUID will...

does anyone know why compilation sometimes fails due to the `smallvec` import?

> Can you implement `TypeUuid` for arrays? Ideally `[T; 1]` and `[T; 2]` should have different `TYPE_UUID`. I think it can be implemented for `[T; N]`, by converting `N` to...

I've had to move the `all_tuples` macro outside of `bevy_ecs` in order to avoid a circular dependency. I've moved it into a new proc macro crate in `bevy_utils` called `bevy_utils_macros`....

well the only reason it needs to be in a separate crate is that it's a proc macro. I could move it as a sub-crate of `bevy_macro_utils` called `bevy_macro_utils_proc`. I've...