From 1fdab94b5d30ec5b5e0ff89c8ae9902bc56c5a15 Mon Sep 17 00:00:00 2001 From: benfry Date: Mon, 30 Jul 2001 19:13:33 +0000 Subject: [PATCH] cleanup in pde properties, turn off lighting by default in ProcessingApplet --- processing/app/ProcessingApplet.java | 4 ++++ 1 file changed, 4 insertions(+) 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; }