bevy_simple_text_input
bevy_simple_text_input copied to clipboard
Bevy plugin for a simple single-line text input widget.
To reproduce: - `cargo run --example basic` - Type `hello there` - Press left-arrow repeatedly until the cursor disappears This reveals another issue with the janky zero-width cursor setup when...
Since #61 we have macOS specific code that should be checked
When I include a text input in a WASM build, no keyboard is shown for a tablet/phone. I'm not sure whether mobile device support is "out of scope" or if...
not to be merged as is, but in case it's useful as a starting point for you in the future. here i have modifications to support bevy 0.14 with bevy#10193...
Prior to Bevy 0.15, this solution was necessary, because it was impossible to accurately determine the "physical" position of the cursor due to limitations in `ab_glyph`. (Er, seems that we're...
I've added IME support for the text input. Currently, Chinese input has been tested and is working on macOS 15.2. Additionally, the logic for retrieval the current window needs to...
Thank you for this crate! This was really easy to integrate and did exactly what I wanted except I needed a character limit option. My change adds a character limit...