Added Mesh.New() method; can now create new meshes within the module
Changed Object.link() to allow link objects with both BPython-type meshes Changed Object.getData() to allow retrieving both types of BPython-type meshes Added new mesh types to Types module
This commit is contained in:
@@ -47,6 +47,15 @@ def Get(name=None):
|
||||
If no parameter is given, it returns all the meshs in the current scene.
|
||||
"""
|
||||
|
||||
def New(name='Mesh'):
|
||||
"""
|
||||
Create a new mesh data object called I{name}.
|
||||
@type name: string
|
||||
@param name: The name of the mesh data object.
|
||||
@rtype: Mesh
|
||||
@return: a new Blender mesh.
|
||||
"""
|
||||
|
||||
class MCol:
|
||||
"""
|
||||
The MCol object
|
||||
|
||||
Reference in New Issue
Block a user