Blender Git Commit Log
Git Commits -> Revision 7759fc2
Revision 7759fc2 by Joshua Leung (master) January 19, 2010, 11:31 (GMT) |
Motion Paths - (Part 3) Operators, Drawing, and Fixes This commit makes the new-style Motion Paths work for Objects and Bones. Motion Paths can either be added for Objects (Object buttons) or for Selected Bones in PoseMode (Armature Buttons), and/or removed from these panels too. Changes: * Changed the way the baking code worked, since it was better to be able to bake a bunch of objects at once, instead of doing it per object * Fixed a variety of bugs regarding initialising defaults and reading old files * Added operators for Objects (like for bones), and replaced the existing code for bones. * Fixed bug with baking code that was causing it to bake the wrong ranges Todos: * Frame number drawing is currently messed up, since the "cached" text drawing takes into account the object transforms. * The new MotionPath panels currently appear as the first panels in the respective contexts, probably due to the order in which the files are included. This needs some fixing, though not sure what the best way is yet. |
Commit Details:
Full Hash: 7759fc2983422ef234b1d9a2bcdbc4c7e6265071
SVN Revision: 26104
Parent Commit: ed578c2
Lines Changed: +389, -476
1 Added Path:
/release/scripts/ui/properties_animviz.py (+160, -0) (View)
13 Modified Paths:
/release/scripts/ui/properties_data_armature.py (+1, -49) (Diff)
/source/blender/blenkernel/BKE_anim.h (+3, -1) (Diff)
/source/blender/blenkernel/intern/anim.c (+34, -28) (Diff)
/source/blender/blenkernel/intern/armature.c (+7, -1) (Diff)
/source/blender/blenloader/intern/readfile.c (+16, -1) (Diff)
/source/blender/editors/armature/poseobject.c (+24, -206) (Diff)
/source/blender/editors/include/ED_object.h (+4, -0) (Diff)
/source/blender/editors/object/object_edit.c (+112, -0) (Diff)
/source/blender/editors/object/object_intern.h (+2, -0) (Diff)
/source/blender/editors/object/object_ops.c (+2, -0) (Diff)
/source/blender/editors/space_view3d/drawanimviz.c (+2, -1) (Diff)
/source/blender/editors/space_view3d/drawarmature.c (+8, -187) (Diff)
/source/blender/editors/space_view3d/drawobject.c (+14, -2) (Diff)
/source/blender/blenkernel/BKE_anim.h (+3, -1) (Diff)
/source/blender/blenkernel/intern/anim.c (+34, -28) (Diff)
/source/blender/blenkernel/intern/armature.c (+7, -1) (Diff)
/source/blender/blenloader/intern/readfile.c (+16, -1) (Diff)
/source/blender/editors/armature/poseobject.c (+24, -206) (Diff)
/source/blender/editors/include/ED_object.h (+4, -0) (Diff)
/source/blender/editors/object/object_edit.c (+112, -0) (Diff)
/source/blender/editors/object/object_intern.h (+2, -0) (Diff)
/source/blender/editors/object/object_ops.c (+2, -0) (Diff)
/source/blender/editors/space_view3d/drawanimviz.c (+2, -1) (Diff)
/source/blender/editors/space_view3d/drawarmature.c (+8, -187) (Diff)
/source/blender/editors/space_view3d/drawobject.c (+14, -2) (Diff)