Skip to content

Instantly share code, notes, and snippets.

@mactkg
Created July 10, 2013 07:56
Show Gist options
  • Select an option

  • Save mactkg/5964289 to your computer and use it in GitHub Desktop.

Select an option

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