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:
authorCampbell Barton <campbell@blender.org>2022-08-30 04:14:08 +0300
committerCampbell Barton <campbell@blender.org>2022-08-30 04:14:08 +0300
commit26487530f2c20c5e440ed620d87ff6e27b6e0dd7 (patch)
tree4de2a27d4b9391acb08970039185604acd618f5f /release/scripts
parent5ae3fa50e224700e5722ecbe641692776bba0567 (diff)
parente9fe4aa7d7df16a0a3f80c36b38dc7a97c8cc976 (diff)
Merge branch 'blender-v3.3-release'
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_operators/vertexpaint_dirt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/vertexpaint_dirt.py b/release/scripts/startup/bl_operators/vertexpaint_dirt.py
index 74c20a774a3..616e37d37e7 100644
--- a/release/scripts/startup/bl_operators/vertexpaint_dirt.py
+++ b/release/scripts/startup/bl_operators/vertexpaint_dirt.py
@@ -5,7 +5,7 @@
def ensure_active_color_attribute(me):
if me.attributes.active_color:
return me.attributes.active_color
- return me.color_attributes.new("Color", 'BYTE_COLOR', 'FACE_CORNER')
+ return me.color_attributes.new("Color", 'BYTE_COLOR', 'CORNER')
def applyVertexDirt(me, blur_iterations, blur_strength, clamp_dirt, clamp_clean, dirt_only, normalize):