Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Picard <dam.pic@free.fr>2022-06-19 12:26:40 +0300
committerDamien Picard <dam.pic@free.fr>2022-06-19 12:26:40 +0300
commit038db9d607b352f6a7391c5a6b3ab906692c9421 (patch)
tree873e8581fa6c9bcf74af0609269dbe11b8f1c9ff
parentb228db8ba00baada4959f9ae552c61979942805f (diff)
AnimAll: add column heading for missing object types
Only mesh add headings for attributes to key; now curves, surfaces and lattices do, too.
-rw-r--r--animation_animall.py9
1 files changed, 8 insertions, 1 deletions
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: