Blender Git Commit Log
Git Commits -> Revision 6343d4e
Revision 6343d4e by Joshua Leung (master) December 20, 2008, 08:24 (GMT) |
2.5 - Start of porting of Animation Editors * Added new 'Animation' submodule under Editors. This will be used to house all code + features that are used by many different Animation Editors (Action/Dopesheet and IPO) as well as other parts of Blender. * Added back some of the core code need by the Action/Dopesheet editor, which will also be used by IPO Editor. * Brought back file for keyframing management code (i.e. keyframing.c), but there's still quite a lot of missing stuff that I'll need to restore, so in the meantime, it's #if 0'd out. * Moved markers code to this new module (I'm not sure whether SVN will recognise this change, as TortoiseSVN doesn't seem to have any obvious copy/move commands) |
Commit Details:
Full Hash: 6343d4e233e96acee76d68adc060498313bb8d6c
SVN Revision: 17963
Parent Commit: 3b15fd4
Lines Changed: +3927, -878
8 Added Paths:
/source/blender/editors/animation/anim_draw.c (+174, -0) (View)
/source/blender/editors/animation/anim_filter.c (+208, -0) (View)
/source/blender/editors/animation/anim_keyframing.c (+2286, -0) (View)
/source/blender/editors/animation/anim_markers.c (+869, -0) (View)
/source/blender/editors/animation/Makefile (+54, -0)
/source/blender/editors/animation/SConscript (+9, -0) (View)
/source/blender/editors/include/ED_anim_api.h (+172, -0) (View)
/source/blender/editors/include/ED_keyframing.h (+134, -0) (View)
/source/blender/editors/animation/anim_filter.c (+208, -0) (View)
/source/blender/editors/animation/anim_keyframing.c (+2286, -0) (View)
/source/blender/editors/animation/anim_markers.c (+869, -0) (View)
/source/blender/editors/animation/Makefile (+54, -0)
/source/blender/editors/animation/SConscript (+9, -0) (View)
/source/blender/editors/include/ED_anim_api.h (+172, -0) (View)
/source/blender/editors/include/ED_keyframing.h (+134, -0) (View)
1 Deleted Path:
/source/blender/editors/util/ed_markers.c (+0, -869)
5 Modified Paths:
/source/blender/editors/SConscript (+2, -1) (Diff)
/source/blender/editors/space_action/SConscript (+1, -1) (Diff)
/source/blender/editors/space_action/space_action.c (+10, -2) (Diff)
/source/blender/editors/space_time/space_time.c (+2, -1) (Diff)
/source/blender/editors/space_time/time_ops.c (+6, -4) (Diff)
/source/blender/editors/space_action/SConscript (+1, -1) (Diff)
/source/blender/editors/space_action/space_action.c (+10, -2) (Diff)
/source/blender/editors/space_time/space_time.c (+2, -1) (Diff)
/source/blender/editors/space_time/time_ops.c (+6, -4) (Diff)