AnimViz (Motion Paths + Ghosting) panels are registered so that they will show up in a sensible location in the properties window. Also made these panels collapsed by default.

This commit is contained in:
2010-02-25 12:01:43 +00:00
parent 4d3accd0cb
commit 4b80d4e60d
3 changed files with 51 additions and 7 deletions

View File

@@ -304,6 +304,8 @@ class OBJECT_PT_animation(ObjectButtonsPanel):
row.prop(ob, "track_override_parent", text="Override Parent")
row.active = (ob.parent is not None)
# import generic panels from other files
from properties_animviz import OBJECT_PT_motion_paths, OBJECT_PT_onion_skinning
classes = [
OBJECT_PT_context_object,
@@ -314,6 +316,9 @@ classes = [
OBJECT_PT_display,
OBJECT_PT_duplication,
OBJECT_PT_animation,
OBJECT_PT_motion_paths,
#OBJECT_PT_onion_skinning,
OBJECT_PT_custom_props]