X modified pde.properties slightly for console and header

X need stdout in p5 window b/c mac has no stdout
X   remove class 'PdeEditorOutput' and 'PdeEditorLabel'(?)
X   added editor.console.lines to pde.properties
X int() and float() now work for casting
X draw mode needs to be better for workshops
X   make size() work for draw() mode
X     inside Engine, reach in and grab calls to 'size'
X     if call is not using a constant number, then punt
X   when exporting, needs to grab this size parameter as well
This commit is contained in:
benfry
2002-06-30 11:50:01 +00:00
parent aa4421596b
commit 654b3ee734
7 changed files with 306 additions and 49 deletions

View File

@@ -53,9 +53,9 @@ public class PdeEditorHeader extends Panel /* implements ActionListener*/ {
if (primaryColor == null) {
backgroundColor = PdeApplet.getColor("editor.header.bgcolor",
new Color(51, 51, 51));
primaryColor = PdeApplet.getColor("editor.header.fgcolor1",
primaryColor = PdeApplet.getColor("editor.header.fgcolor.primary",
new Color(255, 255, 255));
secondaryColor = PdeApplet.getColor("editor.header.fgcolor2",
secondaryColor = PdeApplet.getColor("editor.header.fgcolor.secondary",
new Color(153, 153, 153));
}
}