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:
authorRamil Roosileht <Limarest>2022-11-10 23:11:11 +0300
committerHans Goudey <h.goudey@me.com>2022-11-11 00:29:21 +0300
commit98003125908858e23e575cf1947cf1b7587716b3 (patch)
tree1ec1a0eb5a623d7bfa13db1bf2b69e5fcc0fccf3 /source/blender/editors/geometry/geometry_ops.cc
parentf613c504c4fe8975b92fb456090f221dad8266fb (diff)
Mesh: Convert color attribute operator
Implements an operator to convert color attributes in available domains and types, as described in T97106. Differential Revision: https://developer.blender.org/D15596
Diffstat (limited to 'source/blender/editors/geometry/geometry_ops.cc')
-rw-r--r--source/blender/editors/geometry/geometry_ops.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/geometry/geometry_ops.cc b/source/blender/editors/geometry/geometry_ops.cc
index acac757ecf1..79a0468f51a 100644
--- a/source/blender/editors/geometry/geometry_ops.cc
+++ b/source/blender/editors/geometry/geometry_ops.cc
@@ -24,4 +24,5 @@ void ED_operatortypes_geometry(void)
WM_operatortype_append(GEOMETRY_OT_color_attribute_render_set);
WM_operatortype_append(GEOMETRY_OT_color_attribute_duplicate);
WM_operatortype_append(GEOMETRY_OT_attribute_convert);
+ WM_operatortype_append(GEOMETRY_OT_color_attribute_convert);
}