| Module: Text | ./Text.py | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
The Blender Text moduleThis module lets you manipulate the Text buffers inside Blender. Text objects are currently owned by the Text editor in Blender. Example:
from Blender import Text
text = Text.New('Text') # create new text buffer
text.write('hello') # write string
Text.unlink(text) # delete
|