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:
Diffstat (limited to 'add_advanced_objects_menu/mesh_easylattice.py')
-rw-r--r--add_advanced_objects_menu/mesh_easylattice.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/add_advanced_objects_menu/mesh_easylattice.py b/add_advanced_objects_menu/mesh_easylattice.py
index d2e608e9..585a343f 100644
--- a/add_advanced_objects_menu/mesh_easylattice.py
+++ b/add_advanced_objects_menu/mesh_easylattice.py
@@ -268,22 +268,22 @@ class EasyLattice(Operator):
bl_description = ("Create a Lattice modifier ready to edit\n"
"Needs an existing Active Mesh Object\n")
- lat_u = IntProperty(
+ lat_u: IntProperty(
name="Lattice u",
description="Points in u direction",
default=3
)
- lat_v = IntProperty(
+ lat_v: IntProperty(
name="Lattice v",
description="Points in v direction",
default=3
)
- lat_w = IntProperty(
+ lat_w: IntProperty(
name="Lattice w",
description="Points in w direction",
default=3
)
- lat_scale_factor = FloatProperty(
+ lat_scale_factor: FloatProperty(
name="Lattice scale factor",
description="Adjustment to the lattice scale",
default=1,
@@ -296,7 +296,7 @@ class EasyLattice(Operator):
('KEY_CATMULL_ROM', "Catmull-Rom", "Catmull-Rom Interpolation type"),
('KEY_BSPLINE', "BSpline", "Key BSpline Interpolation Type")
)
- lat_type = EnumProperty(
+ lat_type: EnumProperty(
name="Lattice Type",
description="Choose Lattice Type",
items=lat_types,