bevy_ui_builders/dropdown/
plugin.rs

1//! Plugin for dropdown functionality
2
3use bevy_plugin_builder::define_plugin;
4use super::systems::*;
5
6define_plugin!(DropdownPlugin {
7    update: [
8        handle_dropdown_button_clicks,
9        handle_dropdown_option_clicks,
10        close_dropdown_on_outside_click,
11        update_dropdown_selection_highlights,
12        update_dropdown_option_hover,
13    ]
14});