cleanup in pde properties, turn off lighting by default in ProcessingApplet

This commit is contained in:
benfry
2001-07-30 19:13:33 +00:00
parent a879ef3df5
commit 1fdab94b5d

View File

@@ -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;
}