diff --git a/processing/app/ProcessingApplet.java b/processing/app/ProcessingApplet.java index a9da5a669..3a9d27d4d 100644 --- a/processing/app/ProcessingApplet.java +++ b/processing/app/ProcessingApplet.java @@ -194,6 +194,10 @@ public class ProcessingApplet extends Applet this.height = height; g = new Bagel(width, height); + + // do all the defaults down here, because + // subclasses need to go through this function + g.lighting = false; }