We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm not being able to create a transparent window. The method transparent on WindowSettings seems to have no effect:
transparent
WindowSettings
extern crate piston_window; use piston_window::*; fn main() { let mut window: PistonWindow = WindowSettings::new("Hello Piston!", (640, 480)) .exit_on_esc(true) .transparent(true) .build() .unwrap_or_else(|e| { panic!("Failed to build PistonWindow: {}", e) }); while let Some(e) = window.next() { window.draw_2d(&e, |_c, g, _d| { clear([0.5, 1.0, 0.5, 0.5], g); }); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm not being able to create a transparent window.
The method
transparent
onWindowSettings
seems to have no effect:The text was updated successfully, but these errors were encountered: