mbrea-c / bevy_animation_graph

Animation graphs in Bevy!
Apache License 2.0
97 stars 5 forks source link

Investigate using a dynamic registry to replace the AnimationNodeType enum #59

Open mbrea-c opened 5 days ago

mbrea-c commented 5 days ago

Having to update the AnimationNodeType adds another layer of friction to adding/removing nodes. Relying on a static enum also blocks custom nodes.

Preferably, we'd a dynamic registry to store node types.