From BlenderWiki

Jump to: navigation, search
Note: This is an archived version of the Blender Developer Wiki. The current and active wiki is available on wiki.blender.org.

Contact

freenode, gmail, same name.

Wanted Features

  • Word wrapping for the text editor, useful for documentation and such (Scrolling would be limited to the Y axis then)
  • When inputting numbers, be able to do _ + NUMBER to apply that operation to the original number. This is similar to the read-eval-print loop of the python interpreter; _ refers to the return value of whatever was last inputted.
  • Be able to use longer names for objects
  • Instead of just doing eval to get values for numeric input, why not be able to use either lambdas, functions, or numbers? The value would be updated every frame. The functions would be stored in something like TX:wittymontypythonreference.py, and to call a function in that, you would use wittymontypythonreference.function. Of course, this would mean that all TX objects ending in .py would have to be imported into whatever namespace the numeric input uses and they would have to be reloaded everytime a change was made.