PROMETHIA-27
PROMETHIA-27
Anecdotally, this will be really useful in a surprising way; I'm using reflection to power messages for my editor, so cutting down on the verbosity is a performance win as...
I think the best approach is to just very clearly signpost on the assets page that there is no guarantee of a license being compatible with one's project. It's the...
I think this is just because `bevy_editor_pls` needs to be updated to 0.8, and until then it's not usable on 0.8.
I think I've solved it. To insert default value just do: ``` // reflect is a ReflectComponent reflect.add_component(world, entity, &bevy::reflect::DynamicStruct::default()); ``` I was able to add a component with an...
I don't like that solution much as it's even more things to annotate types with, especially when reflect already has a trait bound for default. I think it would be...
Ah, that's a good point, fair enough. I suppose anything that doesn't fulfill everything on its own could probably be newtyped. I'll continue with an add component button branch- I'll...
I've taken `bevy_mod_wanderlust`
I'm also not a fan of `register_all`, it's really not the direction I like to see any library move in. Why can't this be a part of the `#[reflect(Trait)]` syntax?
The idea is to just swap `SyncCell` for `Exclusive` once it stabilizes. As this is probably going to be the only use of `SyncCell` until that point, it shouldn't take...
In that case, we can typedef `SyncCell` to `Exclusive` and deprecate it, and remove it in the next major version. Or just deprecate it. Or just remove it- bevy users...