morfert
morfert
`transparent_window` example not working for me either.  ``` 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.  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:  ## 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.