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:
authorSpivak Vladimir (cwolf3d) <cwolf3d@gmail.com>2019-11-21 15:41:48 +0300
committerSpivak Vladimir (cwolf3d) <cwolf3d@gmail.com>2019-11-21 15:41:48 +0300
commit7ff82d87c6f101c9bc1e451cdd7197a4865951fd (patch)
tree400ca6d3d60b434978441627b03d2c9793fdcf9e /mesh_bsurfaces.py
parent249288e02afdcd024a64480ec29fa61be53dc5ec (diff)
Addon: BSurfaces: Added explanations
Diffstat (limited to 'mesh_bsurfaces.py')
-rw-r--r--mesh_bsurfaces.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesh_bsurfaces.py b/mesh_bsurfaces.py
index d896d71f..d35b19cf 100644
--- a/mesh_bsurfaces.py
+++ b/mesh_bsurfaces.py
@@ -19,7 +19,7 @@
bl_info = {
"name": "Bsurfaces GPL Edition",
- "author": "Eclectiel, Spivak Vladimir(cwolf3d)",
+ "author": "Eclectiel, Vladimir Spivak (cwolf3d)",
"version": (1, 7, 5),
"blender": (2, 80, 0),
"location": "View3D EditMode > Sidebar > Edit Tab",
@@ -87,7 +87,7 @@ class VIEW3D_PT_tools_SURFSK_mesh(Panel):
col = layout.column(align=True)
row = layout.row()
row.separator()
- col.operator("gpencil.surfsk_init", text="Initialize")
+ col.operator("gpencil.surfsk_init", text="Initialize (Add BSurface mesh)")
col.operator("gpencil.surfsk_add_modifiers", text="Add Mirror and others modifiers")
col.label(text="Mesh of BSurface:")
@@ -3524,7 +3524,7 @@ class GPENCIL_OT_SURFSK_add_surface(Operator):
class GPENCIL_OT_SURFSK_init(Operator):
bl_idname = "gpencil.surfsk_init"
bl_label = "Bsurfaces initialize"
- bl_description = "Bsurfaces initialize"
+ bl_description = "Add an empty mesh object with useful settings"
bl_options = {'REGISTER', 'UNDO'}
active_object: PointerProperty(type=bpy.types.Object)