Default (A)
This the standard path to the directory where you will store your custom Python scripts. Each time you want to load a script RealFlow will guide you to this location. "…" opens a file browser to choose an alternative location for your scripts.. The "Default" button restore the standard path to the scripts folder.
...
This function allows you to control the syntax of a script while writing it.
Redirect Output to Messages Panel
When enabled, this option allows the usage of Python's "print" statement. You do not have to wrap your text into a scene.message(str)
command anymore, but can use direct statements instead, e.g. print "Hello!"
or print 7 + 5
. Another advantage is that you will get Python's full error text. This is helpful for debugging scripts with def
statements and for tracing bugs.
Format (D)
Customize
A click on this button opens a new window where RealFlow's scripting editors can be configured. Most options are self-explanatory, because the only affect how Python commands are dyed. The only relevant parameter are “Tab size” and “Expand tabs” (see below).
...