Skip to content

Instantly share code, notes, and snippets.

@mactkg
Created July 10, 2013 07:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mactkg/5964289 to your computer and use it in GitHub Desktop.
Save mactkg/5964289 to your computer and use it in GitHub Desktop.
import java.awt.*;
void setup() {
size(800, 600);
}
void init() {
frame.removeNotify();
frame.setBackground(new Color(0x00000000, true));
frame.setUndecorated(true);
frame.addNotify();
super.init();
}
void draw() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment