Skip to content
Snippets Groups Projects
Commit df419245 authored by Jesse Yurkovich's avatar Jesse Yurkovich
Browse files

Merge remote-tracking branch 'origin/blender-v3.3-release'

parents 33e3ba6c 94ebaf04
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,7 @@ class OperatorAutoLoftCurves(Operator): ...@@ -12,6 +12,7 @@ class OperatorAutoLoftCurves(Operator):
bl_idname = "curvetools.create_auto_loft" bl_idname = "curvetools.create_auto_loft"
bl_label = "Loft" bl_label = "Loft"
bl_description = "Lofts selected curves" bl_description = "Lofts selected curves"
bl_options = {'UNDO'}
@classmethod @classmethod
def poll(cls, context): def poll(cls, context):
......
...@@ -145,6 +145,7 @@ class OperatorOriginToSpline0Start(bpy.types.Operator): ...@@ -145,6 +145,7 @@ class OperatorOriginToSpline0Start(bpy.types.Operator):
bl_idname = "curvetools.operatororigintospline0start" bl_idname = "curvetools.operatororigintospline0start"
bl_label = "OriginToSpline0Start" bl_label = "OriginToSpline0Start"
bl_description = "Sets the origin of the active/selected curve to the starting point of the (first) spline. Nice for curve modifiers" bl_description = "Sets the origin of the active/selected curve to the starting point of the (first) spline. Nice for curve modifiers"
bl_options = {'UNDO'}
@classmethod @classmethod
...@@ -182,6 +183,7 @@ class OperatorIntersectCurves(bpy.types.Operator): ...@@ -182,6 +183,7 @@ class OperatorIntersectCurves(bpy.types.Operator):
bl_idname = "curvetools.operatorintersectcurves" bl_idname = "curvetools.operatorintersectcurves"
bl_label = "Intersect" bl_label = "Intersect"
bl_description = "Intersects selected curves" bl_description = "Intersects selected curves"
bl_options = {'UNDO'}
@classmethod @classmethod
...@@ -233,6 +235,7 @@ class OperatorLoftCurves(bpy.types.Operator): ...@@ -233,6 +235,7 @@ class OperatorLoftCurves(bpy.types.Operator):
bl_idname = "curvetools.operatorloftcurves" bl_idname = "curvetools.operatorloftcurves"
bl_label = "Loft" bl_label = "Loft"
bl_description = "Lofts selected curves" bl_description = "Lofts selected curves"
bl_options = {'UNDO'}
@classmethod @classmethod
...@@ -258,6 +261,7 @@ class OperatorSweepCurves(bpy.types.Operator): ...@@ -258,6 +261,7 @@ class OperatorSweepCurves(bpy.types.Operator):
bl_idname = "curvetools.operatorsweepcurves" bl_idname = "curvetools.operatorsweepcurves"
bl_label = "Sweep" bl_label = "Sweep"
bl_description = "Sweeps the active curve along to other curve (rail)" bl_description = "Sweeps the active curve along to other curve (rail)"
bl_options = {'UNDO'}
@classmethod @classmethod
...@@ -283,6 +287,7 @@ class OperatorBirail(bpy.types.Operator): ...@@ -283,6 +287,7 @@ class OperatorBirail(bpy.types.Operator):
bl_idname = "curvetools.operatorbirail" bl_idname = "curvetools.operatorbirail"
bl_label = "Birail" bl_label = "Birail"
bl_description = "Generates a birailed surface from 3 selected curves -- in order: rail1, rail2 and profile" bl_description = "Generates a birailed surface from 3 selected curves -- in order: rail1, rail2 and profile"
bl_options = {'UNDO'}
@classmethod @classmethod
...@@ -306,6 +311,7 @@ class OperatorSplinesSetResolution(bpy.types.Operator): ...@@ -306,6 +311,7 @@ class OperatorSplinesSetResolution(bpy.types.Operator):
bl_idname = "curvetools.operatorsplinessetresolution" bl_idname = "curvetools.operatorsplinessetresolution"
bl_label = "SplinesSetResolution" bl_label = "SplinesSetResolution"
bl_description = "Sets the resolution of all splines" bl_description = "Sets the resolution of all splines"
bl_options = {'UNDO'}
@classmethod @classmethod
...@@ -330,6 +336,7 @@ class OperatorSplinesRemoveZeroSegment(bpy.types.Operator): ...@@ -330,6 +336,7 @@ class OperatorSplinesRemoveZeroSegment(bpy.types.Operator):
bl_idname = "curvetools.operatorsplinesremovezerosegment" bl_idname = "curvetools.operatorsplinesremovezerosegment"
bl_label = "SplinesRemoveZeroSegment" bl_label = "SplinesRemoveZeroSegment"
bl_description = "Removes splines with no segments -- they seem to creep up, sometimes" bl_description = "Removes splines with no segments -- they seem to creep up, sometimes"
bl_options = {'UNDO'}
@classmethod @classmethod
...@@ -364,6 +371,7 @@ class OperatorSplinesRemoveShort(bpy.types.Operator): ...@@ -364,6 +371,7 @@ class OperatorSplinesRemoveShort(bpy.types.Operator):
bl_idname = "curvetools.operatorsplinesremoveshort" bl_idname = "curvetools.operatorsplinesremoveshort"
bl_label = "SplinesRemoveShort" bl_label = "SplinesRemoveShort"
bl_description = "Removes splines with a length smaller than the threshold" bl_description = "Removes splines with a length smaller than the threshold"
bl_options = {'UNDO'}
@classmethod @classmethod
...@@ -393,6 +401,7 @@ class OperatorSplinesJoinNeighbouring(bpy.types.Operator): ...@@ -393,6 +401,7 @@ class OperatorSplinesJoinNeighbouring(bpy.types.Operator):
bl_idname = "curvetools.operatorsplinesjoinneighbouring" bl_idname = "curvetools.operatorsplinesjoinneighbouring"
bl_label = "SplinesJoinNeighbouring" bl_label = "SplinesJoinNeighbouring"
bl_description = "Joins neighbouring splines within a distance smaller than the threshold" bl_description = "Joins neighbouring splines within a distance smaller than the threshold"
bl_options = {'UNDO'}
@classmethod @classmethod
......
...@@ -214,6 +214,7 @@ class RearrangeSpline(bpy.types.Operator): ...@@ -214,6 +214,7 @@ class RearrangeSpline(bpy.types.Operator):
bl_idname = "curvetools.rearrange_spline" bl_idname = "curvetools.rearrange_spline"
bl_label = "Rearrange Spline" bl_label = "Rearrange Spline"
bl_description = "Rearrange Spline" bl_description = "Rearrange Spline"
bl_options = {'UNDO'}
Types = [('NEXT', "Next", "next"), Types = [('NEXT', "Next", "next"),
('PREV', "Prev", "prev")] ('PREV', "Prev", "prev")]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment