You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In egui.rs' demo - keys like '@' work just fine. Appears to be a bevy_egui issue.
On my keyboard, Option (Mac) + '*' is the @ symbol (Danish keybaord).
Bevy 0.11 and here's how I setup my Bevy proj:
#[cfg(target_arch = "wasm32")]let window_plugin = WindowPlugin{primary_window:Some(Window{// Use V-sync and fall back to FIFOpresent_mode:PresentMode::AutoVsync,// Tells wasm to resize the window according to the// available canvasfit_canvas_to_parent:true,// Tells wasm not to override default event handling,// like F5, Ctrl+R etc.prevent_default_event_handling:true,// Use a canvas that existscanvas:Some("#c".to_string()),
..default()}),
..default()};
The text was updated successfully, but these errors were encountered:
In egui.rs' demo - keys like '@' work just fine. Appears to be a bevy_egui issue.
On my keyboard, Option (Mac) + '*' is the @ symbol (Danish keybaord).
Bevy 0.11 and here's how I setup my Bevy proj:
The text was updated successfully, but these errors were encountered: