BPython:
- Pontus Lidman contributed a new module: Blender.Key + access to key objects from NMesh, Lattice and Curve + docs (thanks and sorry for taking so long to check/commit the patch!) - Allowing EVENT spacehandlers to call the file selector (scriptlinks in general are not allowed, but this special case should be able to). Requested by Paolo Colombo (thanks!) - tiny doc update (Ken Hughes pointed an error in the space handlers example) I didn't have time to update the Key module to follow the current bpython design, will do that later and also test it better than I did.
This commit is contained in:
@@ -76,6 +76,7 @@ class Lattice:
|
||||
@ivar depthType: The z dimension key type.
|
||||
@ivar mode: The current mode of the Lattice.
|
||||
@ivar latSize: The number of points in this Lattice.
|
||||
@cvar key: The L{Key.Key} object associated with this Lattice.
|
||||
"""
|
||||
|
||||
def getName():
|
||||
@@ -189,6 +190,13 @@ class Lattice:
|
||||
much probably an undesired effect.
|
||||
"""
|
||||
|
||||
def getKey():
|
||||
"""
|
||||
Returns the L{Key.Key} object associated with this Lattice.
|
||||
@rtype: L{Key.Key}
|
||||
@return: A key object representing the keyframes of the lattice or None.
|
||||
"""
|
||||
|
||||
def insertKey(frame):
|
||||
"""
|
||||
Inserts the current state of the Lattice as a new absolute keyframe
|
||||
|
||||
Reference in New Issue
Block a user