Blender Git Loki
Git Commits -> Revision 618b459
Revision 618b459 by Joshua Leung (master) March 18, 2010, 13:04 (GMT) |
F-Modifier Goodies (as requested by @ndy): * Copy/Paste operators for F-Modifiers Available in Graph and NLA Editors. Use the Copy/Paste buttons beside the 'Add Modifier' buttons. Copy copies all the modifiers of the ACTIVE F-Curve or Strip depending on the editor. Paste pastes modifiers from the buffer to all the selected F-Curves or Strips, adding the new modifiers to the ends of each list. * 'Stepped Interpolation' F-Modifier This modifier holds each interpolated value from the F-Curve for several frames without changing the timing. This allows to preview motions 'on-twos' for example without altering the timing, or having to go through setting heaps of keyframes. In this case, Andy wanted to use this for CG <-> StopMo. |
Commit Details:
Full Hash: 618b459e8b3630eea747523febec666889a364f7
SVN Revision: 27601
Parent Commit: 148985e
Lines Changed: +490, -7
16 Modified Paths:
/source/blender/blenkernel/BKE_fcurve.h (+1, -0) (Diff)
/source/blender/blenkernel/intern/fmodifier.c (+69, -0) (Diff)
/source/blender/editors/animation/fmodifier_ui.c (+106, -2) (Diff)
/source/blender/editors/include/ED_anim_api.h (+19, -0) (Diff)
/source/blender/editors/space_graph/graph_buttons.c (+6, -1) (Diff)
/source/blender/editors/space_graph/graph_edit.c (+116, -1) (Diff)
/source/blender/editors/space_graph/graph_intern.h (+2, -0) (Diff)
/source/blender/editors/space_graph/graph_ops.c (+2, -1) (Diff)
/source/blender/editors/space_nla/nla_buttons.c (+5, -0) (Diff)
/source/blender/editors/space_nla/nla_edit.c (+122, -2) (Diff)
/source/blender/editors/space_nla/nla_intern.h (+2, -0) (Diff)
/source/blender/editors/space_nla/nla_ops.c (+2, -0) (Diff)
/source/blender/makesdna/DNA_anim_types.h (+9, -0) (Diff)
/source/blender/makesrna/intern/rna_fcurve.c (+26, -0) (Diff)
/source/blender/makesrna/RNA_access.h (+1, -0) (Diff)
/source/blender/windowmanager/intern/wm_init_exit.c (+2, -0) (Diff)
/source/blender/blenkernel/intern/fmodifier.c (+69, -0) (Diff)
/source/blender/editors/animation/fmodifier_ui.c (+106, -2) (Diff)
/source/blender/editors/include/ED_anim_api.h (+19, -0) (Diff)
/source/blender/editors/space_graph/graph_buttons.c (+6, -1) (Diff)
/source/blender/editors/space_graph/graph_edit.c (+116, -1) (Diff)
/source/blender/editors/space_graph/graph_intern.h (+2, -0) (Diff)
/source/blender/editors/space_graph/graph_ops.c (+2, -1) (Diff)
/source/blender/editors/space_nla/nla_buttons.c (+5, -0) (Diff)
/source/blender/editors/space_nla/nla_edit.c (+122, -2) (Diff)
/source/blender/editors/space_nla/nla_intern.h (+2, -0) (Diff)
/source/blender/editors/space_nla/nla_ops.c (+2, -0) (Diff)
/source/blender/makesdna/DNA_anim_types.h (+9, -0) (Diff)
/source/blender/makesrna/intern/rna_fcurve.c (+26, -0) (Diff)
/source/blender/makesrna/RNA_access.h (+1, -0) (Diff)
/source/blender/windowmanager/intern/wm_init_exit.c (+2, -0) (Diff)