jayy-ahn
jayy-ahn
Have you tried implementing fn [clear_color](https://docs.rs/eframe/latest/eframe/trait.App.html#method.clear_color) to MyEguiApp? ``` impl MyEquiApp { fn new(...) {...} fn clear_color(&self, _visuals: &egui::Visuals) -> [f32; 4] { [0.0, 0.0, 0.0, 0.0] } } ```...
Try adding a CentralPanel with the frame filled with Color32::TRANSPARENT. ``` impl eframe::App for MyEguiApp { fn update(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame) { egui::Window::new("test").show(ctx, |ui| { ui.heading("hi"); };...