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 'render_freestyle_svg.py')
-rw-r--r--render_freestyle_svg.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/render_freestyle_svg.py b/render_freestyle_svg.py
index 7e1ffc19..3e3634b1 100644
--- a/render_freestyle_svg.py
+++ b/render_freestyle_svg.py
@@ -218,19 +218,19 @@ class SVGExport(bpy.types.PropertyGroup):
"""Implements the properties for the SVG exporter"""
bl_idname = "RENDER_PT_svg_export"
- use_svg_export = BoolProperty(
+ use_svg_export: BoolProperty(
name="SVG Export",
description="Export Freestyle edges to an .svg format",
)
- split_at_invisible = BoolProperty(
+ split_at_invisible: BoolProperty(
name="Split at Invisible",
description="Split the stroke at an invisible vertex",
)
- object_fill = BoolProperty(
+ object_fill: BoolProperty(
name="Fill Contours",
description="Fill the contour with the object's material color",
)
- mode = EnumProperty(
+ mode: EnumProperty(
name="Mode",
items=(
('FRAME', "Frame", "Export a single frame", 0),
@@ -238,7 +238,7 @@ class SVGExport(bpy.types.PropertyGroup):
),
default='FRAME',
)
- line_join_type = EnumProperty(
+ line_join_type: EnumProperty(
name="Linejoin",
items=(
('MITER', "Miter", "Corners are sharp", 0),