bevy_ui_builders/text_input/plugin.rs
1//! Text input plugin
2
3use bevy_plugin_builder::define_plugin;
4use super::systems::*;
5
6// Plugin that provides the complete text input system
7define_plugin!(TextInputPlugin {
8 update: [
9 handle_text_input_focus,
10 handle_click_outside_unfocus,
11 validate_text_input_changes,
12 handle_clear_button_clicks
13 ]
14});