diff --git a/source/blender/python/api2_2x/doc/API_intro.py b/source/blender/python/api2_2x/doc/API_intro.py index 9a7c16d5168..a23999f4a0e 100644 --- a/source/blender/python/api2_2x/doc/API_intro.py +++ b/source/blender/python/api2_2x/doc/API_intro.py @@ -33,6 +33,7 @@ The Blender Python API Reference - L{NMesh} (*) - L{Noise} - L{Object} (*) + - L{Pose} - L{Registry} - L{Scene} - L{Radio} diff --git a/source/blender/python/api2_2x/doc/Armature.py b/source/blender/python/api2_2x/doc/Armature.py index 79f9481192d..1be56121532 100644 --- a/source/blender/python/api2_2x/doc/Armature.py +++ b/source/blender/python/api2_2x/doc/Armature.py @@ -260,7 +260,7 @@ class Editbone: @type head: Vector Object @ivar tail: This Bone's "tail" ending position when in rest state (armaturespace). @type tail: Vector Object - @ivar matrix: This Bone's matrix. (armaturespace) This cannot be set. + @ivar matrix: This Bone's matrix. (armaturespace) @type matrix: Matrix Object @ivar parent: The parent Bone. @type parent: Editbone Object diff --git a/source/blender/python/api2_2x/doc/Object.py b/source/blender/python/api2_2x/doc/Object.py index 45d3fb9c90d..eff790bd8fd 100644 --- a/source/blender/python/api2_2x/doc/Object.py +++ b/source/blender/python/api2_2x/doc/Object.py @@ -269,6 +269,13 @@ class Object: the type Effect. """ + def getPose(): + """ + Gets the current Pose of the object. + @rtype: Pose object + @return: the current pose object + """ + def clearIpo(): """ Unlinks the ipo from this object.