had debug oprions enabled for cal3d, small updates to epydoc

This commit is contained in:
Campbell Barton 2007-04-24 02:09:25 +00:00
parent 54b494540b
commit 1ad4f024c8
3 changed files with 6 additions and 6 deletions

@ -1004,8 +1004,8 @@ def export_cal3d(filename):
if len(animation.tracks) < 2:
Blender.Draw.PupMenu('Warning, the armature has less then 2 tracks, file may not load in Cal3d')
import os
# import os
if __name__ == '__main__':
#Blender.Window.FileSelector(export_cal3d, "Cal3D Export", Blender.Get('filename').replace('.blend', '.cfg'))
export_cal3d('/test' + '.cfg')
os.system('cd /; wine /cal3d_miniviewer.exe /test.cfg')
Blender.Window.FileSelector(export_cal3d, "Cal3D Export", Blender.Get('filename').replace('.blend', '.cfg'))
#export_cal3d('/test' + '.cfg')
#os.system('cd /; wine /cal3d_miniviewer.exe /test.cfg')

@ -244,7 +244,7 @@ class Bone:
@ivar head: This Bone's "head" ending position when in rest state.
Keys are:
- 'ARMATURESPACE' - this head position in relation to the armature
- 'BONESPACE' - the head position in relation to itself
- 'BONESPACE' - the head position in relation to itself.
@type head: Dictionary
@ivar tail: This Bone's "tail" ending position when in rest state.
Keys are:

@ -155,7 +155,7 @@ class PoseBone:
This object gives access to PoseBone-specific data in Blender.
@ivar name: The name of this PoseBone.
@type name: String
@ivar loc: The change in location for this PoseBone.
@ivar loc: The change in location for this PoseBone. this is the equivilent of bone.getLoc() in the old 2.3x python api.
@type loc: Vector object
@ivar size: The change in size for this PoseBone (no change is 1,1,1)
@type size: Vector object