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:
@@ -43,10 +43,10 @@ class Metaball:
|
||||
The Metaball object
|
||||
===================
|
||||
This metaball gives access to generic data from all metaballs in Blender.
|
||||
@cvar name: The name of the metaball.
|
||||
@cvar loc: The location of the metaball.
|
||||
@cvar rot: The rotation of the metaball.
|
||||
@cvar size: The size of the metaball.
|
||||
@ivar name: The name of the metaball.
|
||||
@ivar loc: The location of the metaball.
|
||||
@ivar rot: The rotation of the metaball.
|
||||
@ivar size: The size of the metaball.
|
||||
"""
|
||||
|
||||
def addMetaelem(paramslist):
|
||||
|
||||
Reference in New Issue
Block a user