How can I reflect the mode of Timer so that it's visible in the Bevy debug interface - "inspector egui"? Other stats are visible like the current time, a pausing option, etc., just the mode.
This is my code:
#[derive(Reflect, Component, Default)]
#[reflect(Component)]
pub struct Tower {
shooting_timer: Timer
}
In this repo in this file on line 127 this error is defined.