bevy-inspector-egui 0.6.1

Inspector plugin for the bevy game engine
Documentation
use bevy::prelude::Color;
use bevy_inspector_egui::Inspectable;

#[derive(Inspectable)]
struct Struct {
    #[inspectable(min = 1.0, max = -100.0)]
    x: f32,
    #[inspectable(alpha = true)]
    color: Color,
}