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.
9 changed files with 15 additions and 3 deletions
Showing only changes of commit b163fcd062 - Show all commits

View File

@ -8,8 +8,7 @@ bl_info = {
"blender": (3, 0, 0),
"location": "3D View -> Select an object and the active modifier is simple deformation",
"description": "Simple Deform visualization adjustment tool",
"doc_url": "https://github.com/Yorha4D/simple_deform_helper/blob/main/README_CN.md",
"wiki_url": "",
"doc_url": "https://github.com/AIGODLIKE/simple_deform_helper/blob/main/README.md",
"category": "3D View"
}

View File

@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-2.0-or-later
from os.path import dirname, basename, realpath
G_MODIFIERS_PROPERTY = [ # copy modifier data

View File

@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-2.0-or-later
import bgl
import blf
import bpy

View File

@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-2.0-or-later
import bpy
import math
from bpy_extras import view3d_utils

View File

@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
import bpy
from bpy.types import Operator
from bpy.props import FloatProperty, StringProperty, BoolProperty
@ -5,7 +7,7 @@ from bpy.props import FloatProperty, StringProperty, BoolProperty
from .utils import Pref
class DeformAxisOperator(Operator,Pref):
class DeformAxisOperator(Operator, Pref):
bl_idname = 'simple_deform_gizmo.deform_axis'
bl_label = 'deform_axis'
bl_description = 'deform_axis operator'

View File

@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
import os
import bpy
from bpy.props import (FloatProperty,

View File

@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
import bpy
from bpy.app import timers

View File

@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
import bpy

View File

@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
import math
import uuid