From 038db9d607b352f6a7391c5a6b3ab906692c9421 Mon Sep 17 00:00:00 2001 From: Damien Picard Date: Sun, 19 Jun 2022 11:26:40 +0200 Subject: [PATCH] AnimAll: add column heading for missing object types Only mesh add headings for attributes to key; now curves, surfaces and lattices do, too. --- animation_animall.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/animation_animall.py b/animation_animall.py index 920f3177..944f4a2f 100644 --- a/animation_animall.py +++ b/animation_animall.py @@ -153,8 +153,10 @@ class VIEW3D_PT_animall(Panel): layout.use_property_decorate = False if obj.type == 'LATTICE': - col = layout.column(align=True) + col = layout.column(heading="Points", align=True) col.prop(animall_properties, "key_point_location") + + col = layout.column(heading="Others", align=True) col.prop(animall_properties, "key_shape_key") elif obj.type == 'MESH': @@ -187,10 +189,15 @@ class VIEW3D_PT_animall(Panel): elif obj.type in {'CURVE', 'SURFACE'}: col = layout.column(align=True) + col = layout.column(heading="Points", align=True) col.prop(animall_properties, "key_point_location") col.prop(animall_properties, "key_radius") col.prop(animall_properties, "key_tilt") + + col = layout.column(heading="Splines", align=True) col.prop(animall_properties, "key_material_index") + + col = layout.column(heading="Others", align=True) col.prop(animall_properties, "key_shape_key") if animall_properties.key_shape_key: -- 2.11.4.GIT