bevy-inspector-egui icon indicating copy to clipboard operation
bevy-inspector-egui copied to clipboard

Getting `Range<f32>` to work?

Open johanhelsing opened this issue 7 months ago • 0 comments

I'm using a bevy_particle_systems that has Range<f32> fields. And I get this message:

image

I tried both of these things, but it doesn't seem to help:

        app.register_type::<Range<f32>>()
            .add_plugins(DefaultInspectorConfigPlugin)
            .add_plugins(WorldInspectorPlugin::default())

As I understand it should be added by WorldInspectorPlugin anyway?

johanhelsing avatar Nov 19 '23 13:11 johanhelsing