3 releases (breaking)
0.3.0 | Jul 5, 2024 |
---|---|
0.2.0 | Apr 22, 2024 |
0.1.0 | Apr 20, 2024 |
#451 in Game dev
243 downloads per month
17KB
98 lines
bevy_dyn_component
Usage
Add dynamic_components_plugin
to your App
:
use bevy_dyn_component::prelude::*;
...
app.add_plugins(dynamic_components_plugin);
This initializes the component type registry needed for some of the unsafe sections. After that, you can use the dynamic_component
and insert_dynamic
APIs:
#[derive(Component)]
struct DynamicMarker;
let marker0 = world.dynamic_component::<DynamicMarker>();
world.entity_mut(e).insert_dynamic(marker0, DynamicMarker);
The component ID can also be used in the query builder API.
Future of this crate
Now that Bevy supports dynamic components, it's likely that this crate will soon be obsolete. In the longer term, many of the things you can do with this crate is easier with relations.
Examples
hello_world
Demonstrates basic usage of the library, how to create dynamic components with a layout matching an existing component, how to insert them into entities, and how to use them in the query builder API.
relations_at_home
Demonstrates a simple way of using dynamic components as janky fragmenting relations. It handles cleanup for despawned relation targets, so could be useful to make graph structures if there aren't a lot of relation targets. Importantly, there's not garbage collection for archetypes like there will be with a first-party relations feature, so archetype count will increase with additional relation targets. Finally, querying for related entities is a pain, and there's no support for querying "along" relationships, so the only benefit hierarchies are going to get is automatic cleanup.
Bevy Version
bevy | bevy_dyn_component |
---|---|
0.13 | 0.1-0.2 |
0.14 | 0.3 |
Contribution
PRs welcome. If Bevy doesn't get good first-class support for this soon, I'll probably just keep updating this. It has missing APIs, for example, take_dynamic
. I probably won't be adding this until I need it in a project, but I also won't hesitate to merge it in if someone else wants to tackle it.
Dependencies
~11MB
~195K SLoC