new addon simple_deform_helper #104464

Open
EMM wants to merge 29 commits from Guai_Wo_Ge_EMM/blender-addons:simple_deform_helper into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
4 changed files with 6 additions and 6 deletions
Showing only changes of commit 83cda54492 - Show all commits

View File

@ -10,7 +10,7 @@ from . import (
)
bl_info = {
"name": "SimpleDeformHelper",
"name": "Simple Deform Helper",
"author": "AIGODLIKE Community(BlenderCN辣椒,小萌新)",
"version": (0, 1, 1),
"blender": (3, 0, 0),

View File

@ -10,7 +10,7 @@ class SimpleDeformHelperToolPanel(Panel, GizmoUtils):
bl_region_type = 'UI'
bl_category = 'Tool'
bl_context = '.objectmode'
bl_label = 'SimpleDeformHelper'
bl_label = 'Simple Deform Helper'
bl_idname = 'VIEW3D_PT_simple_deform_helper'
bl_parent_id = 'VIEW3D_PT_tools_object_options'

View File

@ -65,7 +65,7 @@ class SimpleDeformGizmoAddonPreferences(AddonPreferences, GizmoUtils):
box = col.box()
for text in ("You can press the following shortcut keys when dragging values",
" Wheel: Switch Origin Ctrl Mode",
" X、Y、Z: Switch Modifier Deform Axis",
" X,Y,Z: Switch Modifier Deform Axis",
" W: Switch Deform Wireframe Show",
" A: Switch To Select Bend Axis Mode(deform_method=='BEND')",):
box.label(text=self.translate_text(text))

View File

@ -17,8 +17,8 @@ translations_dict = {
"拖动值时可以按以下快捷键",
("*", " Wheel: Switch Origin Ctrl Mode"):
" 滚轮: 切换原点控制模式",
("*", " X、Y、Z: Switch Modifier Deform Axis"):
" X、Y、Z: 切换修改器型变轴",
("*", " X,Y,Z: Switch Modifier Deform Axis"):
" X,Y,Z: 切换修改器型变轴",
("*", " W: Switch Deform Wireframe Show"):
" W: 切换形变线框显示",
("*",
@ -59,7 +59,7 @@ translations_dict = {
("*", "Upper limit"): "上限",
("*", "3D View -> Select an object and the active modifier is simple deformation"): "3D视图 -> 选择一个物体,"
"并且活动修改器为简易形修改器",
("*", "3D View: SimpleDeformHelper"): "3D 视图: SimpleDeformHelper 简易形变助手",
("*", "3D View: Simple Deform Helper"): "3D 视图: Simple Deform Helper 简易形变助手",
("*", ""): "",
}
}