From 7560b7bce09b3cb86cee109ed76439675380354f 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 --- app/ProcessingApplet.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/ProcessingApplet.java b/app/ProcessingApplet.java index a9da5a669..3a9d27d4d 100644 --- a/app/ProcessingApplet.java +++ b/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; }