Merge branch 'blender-v3.3-release'

This commit is contained in:
Campbell Barton 2022-08-30 11:14:08 +10:00
commit 26487530f2
Notes: blender-bot 2023-02-14 09:29:42 +01:00
Referenced by issue #100702, Crash on moving the object in particular case
1 changed files with 1 additions and 1 deletions

View File

@ -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):