Bevy version and features
- 0.19.0-rc.1
- features
bevy_feathers
What you did
Spawned FeathersNumberInput in Update schedule.
fn spawn_number_input(mut commands: Commands, mut is_spawned: Local<bool>) {
if *is_spawned { return; }
*is_spawned = true;
commands.spawn_scene(bsn! { :FeathersNumberInput Node { width: px(200) } });
}
What went wrong
If I run the system in First it works properly but if I run it in PreUpdate, Update, or PostUpdate it doesn't work. The ValueChange events are firing when I type in the input but no text ever gets rendered in the input.
Bevy version and features
bevy_feathersWhat you did
Spawned
FeathersNumberInputinUpdateschedule.What went wrong
If I run the system in
Firstit works properly but if I run it inPreUpdate,Update, orPostUpdateit doesn't work. TheValueChangeevents are firing when I type in the input but no text ever gets rendered in the input.