mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
reorganizing todo, making note of things done inside readme
This commit is contained in:
@@ -120,8 +120,10 @@ editor.status.font = SansSerif,plain,12
|
||||
# another location. this can be a full or relative path
|
||||
# no promises on how well this works, and note that
|
||||
# a 'default' directory will be created inside it,
|
||||
# which is where any new sketches will be thrown
|
||||
# which is where any new sketches will be thrown.
|
||||
#sketchbook.path=sketchbook
|
||||
# note that this path should use forward slashes (like unix)
|
||||
# instead of \ on windows or : on windows or whatever else
|
||||
|
||||
# may be useful when attempting to debug the preprocessor
|
||||
#editor.save_build_files=false
|
||||
@@ -138,4 +140,3 @@ editor.status.font = SansSerif,plain,12
|
||||
# writes out the parse tree as parseTree.xml, which can be usefully
|
||||
# viewed in (at least) Mozilla or IE. useful when debugging the preprocessor.
|
||||
#compiler.output_parse_tree = false
|
||||
|
||||
|
||||
@@ -133,18 +133,6 @@ out what's going on. useful things when reporting:
|
||||
|
||||
GENERAL NOTES / COMMON ISSUES
|
||||
|
||||
- size() must use numbers, not variables. this is because of how
|
||||
the size command is interpreted by processing.
|
||||
|
||||
- size() must also be the first thing inside setup(). we hope to fix
|
||||
this in the future, but the issue is pricklier than might be expected.
|
||||
|
||||
- when using draw() mode, background() must also use only numbers, and
|
||||
no variables. this is similar to the issue with the size command,
|
||||
because in both cases, processing needs to know the size and
|
||||
background color of the app before it starts, so since variables
|
||||
are determined while the program is running, things break.
|
||||
|
||||
- names of sketches cannot start with a number, or have spaces
|
||||
inside. this is mostly because of a restriction on the naming of
|
||||
java classes. i suppose if lots of people find this upsetting, we
|
||||
|
||||
Reference in New Issue
Block a user