[Bf-extensions-cvs] [5902265f] master: AnimAll: Rename UVMap and Vertex Group settings again

Damien Picard noreply at git.blender.org
Sat Jun 18 16:47:25 CEST 2022


Commit: 5902265f1e5aaeca3781ea15f994bdf0b3cb054d
Author: Damien Picard
Date:   Sat Jun 18 16:40:28 2022 +0200
Branches: master
https://developer.blender.org/rBA5902265f1e5aaeca3781ea15f994bdf0b3cb054d

AnimAll: Rename UVMap and Vertex Group settings again

They were lost in a rebase, somewhere.

===================================================================

M	animation_animall.py

===================================================================

diff --git a/animation_animall.py b/animation_animall.py
index f13c8b12..79e953f9 100644
--- a/animation_animall.py
+++ b/animation_animall.py
@@ -74,7 +74,7 @@ class AnimallProperties(bpy.types.PropertyGroup):
         description="Insert keyframes on active attribute values",
         default=False)
     key_uvs: BoolProperty(
-        name="UVs",
+        name="UV Map",
         description="Insert keyframes on active UV coordinates",
         default=False)
 
@@ -157,7 +157,7 @@ class VIEW3D_PT_animall(Panel):
             col = layout.column(heading="Points", align=True)
             col.prop(animall_properties, "key_point_location")
             col.prop(animall_properties, "key_vertex_bevel", text="Bevel")
-            col.prop(animall_properties, "key_vertex_group", text="Vertex Groups")
+            col.prop(animall_properties, "key_vertex_group")
 
             col = layout.column(heading="Edges", align=True)
             col.prop(animall_properties, "key_edge_bevel", text="Bevel")
@@ -449,7 +449,7 @@ class ANIM_OT_delete_keyframe_animall(Operator):
                             for group in vert.groups:
                                 delete_key(group, 'weight')
 
-                # if animall_properties.key_vcrease:
+                # if animall_properties.key_vertex_crease:
                 #     for vert in data.vertices:
                 #         if not animall_properties.key_selected or vert.select:
                 #             delete_key(vert, 'crease')
@@ -508,7 +508,7 @@ class ANIM_OT_delete_keyframe_animall(Operator):
                             delete_key(point, 'co_deform')
 
             elif obj.type in {'CURVE', 'SURFACE'}:
-                # run this outside the splines loop (only once)
+                # Run this outside the splines loop (only once)
                 if animall_properties.key_shape_key:
                     if obj.active_shape_key_index > 0:
                         for CV in obj.active_shape_key.data:



More information about the Bf-extensions-cvs mailing list