Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Oeser <info@graphics-engineer.com>2020-09-23 14:22:34 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2020-09-23 14:28:14 +0300
commitf09fcda8b681656b3f7bf8917ecf654a9d30faef (patch)
treed028dba8fdcb74688b0d05f60fb562b50f3ce8dd /release
parent9ad80d9896ed2524c18a4c384cbb3fafbc601826 (diff)
Fix T81081: GPencil preset error
Caused by still having 'texture_opacity' in the preests and the preset operator (but this was removed in the 2.83 rewrite). Maniphest Tasks: T81081 Differential Revision: https://developer.blender.org/D8990
Diffstat (limited to 'release')
-rw-r--r--release/scripts/presets/gpencil_material/fill_only.py1
-rw-r--r--release/scripts/presets/gpencil_material/stroke_and_fill.py1
-rw-r--r--release/scripts/presets/gpencil_material/stroke_only.py1
-rw-r--r--release/scripts/startup/bl_operators/presets.py1
4 files changed, 0 insertions, 4 deletions
diff --git a/release/scripts/presets/gpencil_material/fill_only.py b/release/scripts/presets/gpencil_material/fill_only.py
index 57d5dc3b860..aa4d58a8c10 100644
--- a/release/scripts/presets/gpencil_material/fill_only.py
+++ b/release/scripts/presets/gpencil_material/fill_only.py
@@ -19,7 +19,6 @@ gpcolor.flip = False
gpcolor.texture_offset = (0.0, 0.0)
gpcolor.texture_scale = (1.0, 1.0)
gpcolor.texture_angle = 0.0
-gpcolor.texture_opacity = 1.0
gpcolor.texture_clamp = False
gpcolor.mix_factor = 0.0
gpcolor.show_stroke = False
diff --git a/release/scripts/presets/gpencil_material/stroke_and_fill.py b/release/scripts/presets/gpencil_material/stroke_and_fill.py
index eff728a7857..3572036de5e 100644
--- a/release/scripts/presets/gpencil_material/stroke_and_fill.py
+++ b/release/scripts/presets/gpencil_material/stroke_and_fill.py
@@ -19,7 +19,6 @@ gpcolor.flip = False
gpcolor.texture_offset = (0.0, 0.0)
gpcolor.texture_scale = (1.0, 1.0)
gpcolor.texture_angle = 0.0
-gpcolor.texture_opacity = 1.0
gpcolor.texture_clamp = False
gpcolor.mix_factor = 0.0
gpcolor.show_stroke = True
diff --git a/release/scripts/presets/gpencil_material/stroke_only.py b/release/scripts/presets/gpencil_material/stroke_only.py
index 1724a62bffc..4e02b108e01 100644
--- a/release/scripts/presets/gpencil_material/stroke_only.py
+++ b/release/scripts/presets/gpencil_material/stroke_only.py
@@ -19,7 +19,6 @@ gpcolor.flip = False
gpcolor.texture_offset = (0.0, 0.0)
gpcolor.texture_scale = (1.0, 1.0)
gpcolor.texture_angle = 0.0
-gpcolor.texture_opacity = 1.0
gpcolor.texture_clamp = False
gpcolor.mix_factor = 0.0
gpcolor.show_stroke = True
diff --git a/release/scripts/startup/bl_operators/presets.py b/release/scripts/startup/bl_operators/presets.py
index 2ea93a1aee9..243fad076cc 100644
--- a/release/scripts/startup/bl_operators/presets.py
+++ b/release/scripts/startup/bl_operators/presets.py
@@ -686,7 +686,6 @@ class AddPresetGpencilMaterial(AddPresetBase, Operator):
"gpcolor.texture_offset",
"gpcolor.texture_scale",
"gpcolor.texture_angle",
- "gpcolor.texture_opacity",
"gpcolor.texture_clamp",
"gpcolor.mix_factor",
"gpcolor.show_stroke",