Exppython:

- Small fix in NMesh.c
- Updates to ipo related methods in Camera, World and Material
- Doc updates
This commit is contained in:
2003-10-28 00:29:37 +00:00
parent bfef1d0d92
commit 9c6275c55b
14 changed files with 867 additions and 663 deletions

View File

@@ -52,6 +52,8 @@ class World:
@cvar amb: the ambient color of a world object.
@cvar star: the star parameters of a world object. See getStar for the semantics of these parameters.
@cvar mist: the mist parameters of a world object. See getMist for the semantics of these parameters.
@type ipo: Blender Ipo
@cvar ipo: The world type ipo linked to this world object.
"""
def getName():
@@ -61,14 +63,6 @@ class World:
@return: the name of the world object.
"""
def getIpo():
"""
Retreives the Ipo (if any) of an world object
@rtype: Ipo object
@return: the Ipo of the world object.
"""
def setName(name):
"""
Sets the name of a world object.
@@ -78,6 +72,26 @@ class World:
@return: PyNone
"""
def getIpo():
"""
Get the Ipo associated with this world object, if any.
@rtype: Ipo
@return: the wrapped ipo or None.
"""
def setIpo(ipo):
"""
Link an ipo to this world object.
@type ipo: Blender Ipo
@param ipo: a "camera data" ipo.
"""
def clearIpo():
"""
Unlink the ipo from this world object.
@return: True if there was an ipo linked or False otherwise.
"""
def getSkytype():
"""
Retreives the skytype of a world object.