Blender_bevy_components_workflow
Blender_bevy_components_workflow copied to clipboard
Confusing component clone
I have an Interation component, which on the on_add hook inserts an On::<Pointer<Click>> event listener component, because they can't be reflected.
I then get a warning on loading it in bevy
WARN blenvy::blueprints::copy_components: cannot clone component: component: "bevy_eventlistener::event_listener::On<bevy_picking_core::events::Pointer<bevy_picking_core::events::Click>>" is not registered
but it still gets copied over? (or maybe it get's re-created... hmm)
What would be the "go-to" solution for such a problem?