new addon simple_deform_helper #104464
@ -8,8 +8,7 @@ bl_info = {
|
|||||||
"blender": (3, 0, 0),
|
"blender": (3, 0, 0),
|
||||||
"location": "3D View -> Select an object and the active modifier is simple deformation",
|
"location": "3D View -> Select an object and the active modifier is simple deformation",
|
||||||
"description": "Simple Deform visualization adjustment tool",
|
"description": "Simple Deform visualization adjustment tool",
|
||||||
"doc_url": "https://github.com/Yorha4D/simple_deform_helper/blob/main/README_CN.md",
|
"doc_url": "https://github.com/AIGODLIKE/simple_deform_helper/blob/main/README.md",
|
||||||
"wiki_url": "",
|
|
||||||
"category": "3D View"
|
"category": "3D View"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
from os.path import dirname, basename, realpath
|
from os.path import dirname, basename, realpath
|
||||||
|
|
||||||
G_MODIFIERS_PROPERTY = [ # copy modifier data
|
G_MODIFIERS_PROPERTY = [ # copy modifier data
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
import bgl
|
import bgl
|
||||||
import blf
|
import blf
|
||||||
import bpy
|
import bpy
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
import bpy
|
import bpy
|
||||||
import math
|
import math
|
||||||
from bpy_extras import view3d_utils
|
from bpy_extras import view3d_utils
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
from bpy.types import Operator
|
from bpy.types import Operator
|
||||||
from bpy.props import FloatProperty, StringProperty, BoolProperty
|
from bpy.props import FloatProperty, StringProperty, BoolProperty
|
||||||
@ -5,7 +7,7 @@ from bpy.props import FloatProperty, StringProperty, BoolProperty
|
|||||||
from .utils import Pref
|
from .utils import Pref
|
||||||
|
|
||||||
|
|
||||||
class DeformAxisOperator(Operator,Pref):
|
class DeformAxisOperator(Operator, Pref):
|
||||||
bl_idname = 'simple_deform_gizmo.deform_axis'
|
bl_idname = 'simple_deform_gizmo.deform_axis'
|
||||||
bl_label = 'deform_axis'
|
bl_label = 'deform_axis'
|
||||||
bl_description = 'deform_axis operator'
|
bl_description = 'deform_axis operator'
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import bpy
|
import bpy
|
||||||
from bpy.props import (FloatProperty,
|
from bpy.props import (FloatProperty,
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
from bpy.app import timers
|
from bpy.app import timers
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
import math
|
import math
|
||||||
import uuid
|
import uuid
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user