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_mesh_extra_objects/add_mesh_star.py')
-rw-r--r--add_mesh_extra_objects/add_mesh_star.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/add_mesh_extra_objects/add_mesh_star.py b/add_mesh_extra_objects/add_mesh_star.py
index b7e420fe..411fa91d 100644
--- a/add_mesh_extra_objects/add_mesh_star.py
+++ b/add_mesh_extra_objects/add_mesh_star.py
@@ -148,28 +148,28 @@ class AddStar(bpy.types.Operator):
bl_description = "Construct a star mesh"
bl_options = {'REGISTER', 'UNDO', 'PRESET'}
- points = IntProperty(
+ points: IntProperty(
name="Points",
description="Number of points for the star",
min=2,
max=256,
default=5
)
- outer_radius = FloatProperty(
+ outer_radius: FloatProperty(
name="Outer Radius",
description="Outer radius of the star",
min=0.01,
max=9999.0,
default=1.0
)
- innter_radius = FloatProperty(
+ innter_radius: FloatProperty(
name="Inner Radius",
description="Inner radius of the star",
min=0.01,
max=9999.0,
default=0.5
)
- height = FloatProperty(name="Height",
+ height: FloatProperty(name="Height",
description="Height of the star",
min=0.01,
max=9999.0,