Changes to Documentation Format ONLY.
no executable code. Martin noticed many of our bpy instance variables were incorrectly marked as class variables in the doc. This commit essentially changes the title of sections of the doc from Class Variables to Instance Variables. Now that we are adding class or module dictionaries for constants, etc. this is a distinction worth making. Plus it is right.
This commit is contained in:
@@ -65,10 +65,10 @@ class Text:
|
||||
The Text object
|
||||
===============
|
||||
This object gives access to Texts in Blender.
|
||||
@cvar name: The Text name.
|
||||
@cvar filename: The filename of the file loaded into this Text.
|
||||
@cvar mode: The follow_mode flag: if 1 it is 'on'; if 0, 'off'.
|
||||
@cvar nlines: The number of lines in this Text.
|
||||
@ivar name: The Text name.
|
||||
@ivar filename: The filename of the file loaded into this Text.
|
||||
@ivar mode: The follow_mode flag: if 1 it is 'on'; if 0, 'off'.
|
||||
@ivar nlines: The number of lines in this Text.
|
||||
"""
|
||||
|
||||
def getName():
|
||||
|
||||
Reference in New Issue
Block a user