Michael Galos
Michael Galos
When I run `cargo run --example transparent` instead of a transparent window I just get a white window with no decorations. It seems the problem was introduced in this PR:...
fixes https://github.com/rust-windowing/winit/issues/2502
Closes https://github.com/QuantumBadger/Speedy2D/issues/68 Turns out bumping the version of `glutin` to 0.29.1 makes this function available: `self.window_context.window().set_cursor_hittest(!passthrough).unwrap();` which makes mouse passthrough events possible. `WindowCreationOptions` now has `.with_mouse_passthrough(bool)` However with then newer...
I'd love to be able to use Speedy2D as an overlay. Transparency and always on top has been implemented. But is there a way to make all mouse clicks pass...