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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-15 18:55:28 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-15 19:05:28 +0300
commit8c37a7fe4a81e89c2400d4264b7fea8e89b56638 (patch)
tree6a21e76f5821b1f1f734f294c6a875211c48a159 /presets
parent467303ba70d6f406a1942321f1962d2ce2491928 (diff)
Update for object add align property changes
Diffstat (limited to 'presets')
-rw-r--r--presets/operator/curve.torus_knot_plus/13x8_wicker_globe.py2
-rw-r--r--presets/operator/curve.torus_knot_plus/7x6.py2
-rw-r--r--presets/operator/curve.torus_knot_plus/9x9_color.py2
-rw-r--r--presets/operator/curve.torus_knot_plus/braided_coil.py2
-rw-r--r--presets/operator/curve.torus_knot_plus/flower_mesh_(2d).py2
-rw-r--r--presets/operator/curve.torus_knot_plus/slinky_knot.py2
-rw-r--r--presets/operator/curve.torus_knot_plus/snowflake_(2d).py2
-rw-r--r--presets/operator/curve.torus_knot_plus/sun_cross_(2d).py2
-rw-r--r--presets/operator/curve.torus_knot_plus/tripple_dna.py2
-rw-r--r--presets/operator/curve.torus_knot_plus/wicker_basket.py2
10 files changed, 10 insertions, 10 deletions
diff --git a/presets/operator/curve.torus_knot_plus/13x8_wicker_globe.py b/presets/operator/curve.torus_knot_plus/13x8_wicker_globe.py
index 853a7144..d010a089 100644
--- a/presets/operator/curve.torus_knot_plus/13x8_wicker_globe.py
+++ b/presets/operator/curve.torus_knot_plus/13x8_wicker_globe.py
@@ -2,7 +2,7 @@ import bpy
op = bpy.context.active_operator
op.location = (0.0, 0.0, 0.0)
-op.view_align = False
+op.align = 'WORLD'
op.rotation = (0.0, 0.0, 0.0)
op.options_plus = False
op.absolute_location = False
diff --git a/presets/operator/curve.torus_knot_plus/7x6.py b/presets/operator/curve.torus_knot_plus/7x6.py
index 3398214c..03388799 100644
--- a/presets/operator/curve.torus_knot_plus/7x6.py
+++ b/presets/operator/curve.torus_knot_plus/7x6.py
@@ -2,7 +2,7 @@ import bpy
op = bpy.context.active_operator
op.location = (0.0, 0.0, 0.0)
-op.view_align = False
+op.align = 'WORLD'
op.rotation = (0.0, 0.0, 0.0)
op.options_plus = False
op.absolute_location = False
diff --git a/presets/operator/curve.torus_knot_plus/9x9_color.py b/presets/operator/curve.torus_knot_plus/9x9_color.py
index a0622a92..5eadb405 100644
--- a/presets/operator/curve.torus_knot_plus/9x9_color.py
+++ b/presets/operator/curve.torus_knot_plus/9x9_color.py
@@ -2,7 +2,7 @@ import bpy
op = bpy.context.active_operator
op.location = (0.0, 0.0, 0.0)
-op.view_align = False
+op.align = 'WORLD'
op.rotation = (0.0, 0.0, 0.0)
op.options_plus = False
op.absolute_location = False
diff --git a/presets/operator/curve.torus_knot_plus/braided_coil.py b/presets/operator/curve.torus_knot_plus/braided_coil.py
index b881f394..13ca7851 100644
--- a/presets/operator/curve.torus_knot_plus/braided_coil.py
+++ b/presets/operator/curve.torus_knot_plus/braided_coil.py
@@ -2,7 +2,7 @@ import bpy
op = bpy.context.active_operator
op.location = (0.0, 0.0, 0.0)
-op.view_align = False
+op.align = 'WORLD'
op.rotation = (0.0, 0.0, 0.0)
op.options_plus = True
op.absolute_location = False
diff --git a/presets/operator/curve.torus_knot_plus/flower_mesh_(2d).py b/presets/operator/curve.torus_knot_plus/flower_mesh_(2d).py
index 863be9e9..24acd03f 100644
--- a/presets/operator/curve.torus_knot_plus/flower_mesh_(2d).py
+++ b/presets/operator/curve.torus_knot_plus/flower_mesh_(2d).py
@@ -2,7 +2,7 @@ import bpy
op = bpy.context.active_operator
op.location = (0.0, 0.0, 0.0)
-op.view_align = False
+op.align = 'WORLD'
op.rotation = (0.0, 0.0, 0.0)
op.options_plus = True
op.absolute_location = False
diff --git a/presets/operator/curve.torus_knot_plus/slinky_knot.py b/presets/operator/curve.torus_knot_plus/slinky_knot.py
index c1e32914..45bd935e 100644
--- a/presets/operator/curve.torus_knot_plus/slinky_knot.py
+++ b/presets/operator/curve.torus_knot_plus/slinky_knot.py
@@ -3,7 +3,7 @@ op = bpy.context.active_operator
op.rotation = (0.0, 0.0, 0.0)
op.location = (0.0, 0.0, 0.0)
-op.view_align = False
+op.align = 'WORLD'
op.options_plus = True
op.absolute_location = False
op.use_colors = True
diff --git a/presets/operator/curve.torus_knot_plus/snowflake_(2d).py b/presets/operator/curve.torus_knot_plus/snowflake_(2d).py
index ad0c0a93..429cd38f 100644
--- a/presets/operator/curve.torus_knot_plus/snowflake_(2d).py
+++ b/presets/operator/curve.torus_knot_plus/snowflake_(2d).py
@@ -2,7 +2,7 @@ import bpy
op = bpy.context.active_operator
op.location = (0.0, 0.0, 0.0)
-op.view_align = False
+op.align = 'WORLD'
op.rotation = (0.0, 0.0, 0.0)
op.options_plus = True
op.absolute_location = False
diff --git a/presets/operator/curve.torus_knot_plus/sun_cross_(2d).py b/presets/operator/curve.torus_knot_plus/sun_cross_(2d).py
index f3a49b0d..1151ef4d 100644
--- a/presets/operator/curve.torus_knot_plus/sun_cross_(2d).py
+++ b/presets/operator/curve.torus_knot_plus/sun_cross_(2d).py
@@ -2,7 +2,7 @@ import bpy
op = bpy.context.active_operator
op.location = (0.0, 0.0, 0.0)
-op.view_align = False
+op.align = 'WORLD'
op.rotation = (0.0, 0.0, 0.0)
op.options_plus = True
op.absolute_location = False
diff --git a/presets/operator/curve.torus_knot_plus/tripple_dna.py b/presets/operator/curve.torus_knot_plus/tripple_dna.py
index ec3ce35b..4ad6df87 100644
--- a/presets/operator/curve.torus_knot_plus/tripple_dna.py
+++ b/presets/operator/curve.torus_knot_plus/tripple_dna.py
@@ -3,7 +3,7 @@ op = bpy.context.active_operator
op.rotation = (0.0, 0.0, 0.0)
op.location = (0.0, 0.0, 0.0)
-op.view_align = False
+op.align = 'WORLD'
op.options_plus = True
op.absolute_location = False
op.use_colors = True
diff --git a/presets/operator/curve.torus_knot_plus/wicker_basket.py b/presets/operator/curve.torus_knot_plus/wicker_basket.py
index b4367956..fb5e206d 100644
--- a/presets/operator/curve.torus_knot_plus/wicker_basket.py
+++ b/presets/operator/curve.torus_knot_plus/wicker_basket.py
@@ -2,7 +2,7 @@ import bpy
op = bpy.context.active_operator
op.location = (0.0, 0.0, 0.0)
-op.view_align = False
+op.align = 'WORLD'
op.rotation = (0.0, 0.0, 0.0)
op.options_plus = True
op.absolute_location = False