morfert

Results 5 comments of morfert

`transparent_window` example not working for me either. ![image](https://github.com/bevyengine/bevy/assets/100343258/c1380b0c-cba0-42cd-a330-c5fd01ab0ef0) ``` cargo run --example transparent_window Finished dev [unoptimized + debuginfo] target(s) in 0.42s Running `target\debug\examples\transparent_window.exe` 2023-06-14T07:43:02.479588Z INFO bevy_winit::system: Creating new window "Bevy...

I cloned winit and ran `cargo run --example transprent` but the window was not transparent. ![image](https://github.com/bevyengine/bevy/assets/100343258/97c86ccc-dcbd-4b70-8bbf-eb470ed792f7) This may be a winit problem.

Yeah, [winit](https://github.com/rust-windowing/winit) is probably fine I tried drawing something. ## Transparent With: ``` WindowBuilder::new() .with_decorations(false) .with_transparent(true) .with_inner_size(size) .with_min_inner_size(size) .build(&event_loop) .unwrap() ``` Result: ![image](https://github.com/bevyengine/bevy/assets/100343258/83e09a11-ac43-4c32-818f-3db2d35853ec) ## Not transparent With: ``` WindowBuilder::new() .with_title("Hello...

Using the following code: ```rust let window = WindowBuilder::new() .with_title("A simple window") .with_transparent(true) .build(&event_loop) .expect("Builing window failed"); let instance = wgpu::Instance::default(); let surface = unsafe { instance.create_surface(&window) }.expect("Could not create...

Yeah, I only have windows firewall installed. Even after disabling all the firewall options from settings I could not initialize a project.