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-18 17:40:28 +0300
committerDamien Picard <dam.pic@free.fr>2022-06-18 17:46:23 +0300
commit5902265f1e5aaeca3781ea15f994bdf0b3cb054d (patch)
tree42e33a1e2ad2bcfd8e0a4c3f23d458fcbba8d82a /animation_animall.py
parenta784b1fbd00ee96a6bf0669f6b611caf382a7934 (diff)
AnimAll: Rename UVMap and Vertex Group settings again
They were lost in a rebase, somewhere.
Diffstat (limited to 'animation_animall.py')
-rw-r--r--animation_animall.py8
1 files changed, 4 insertions, 4 deletions
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: