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:
authorHans Goudey <h.goudey@me.com>2020-12-01 18:28:29 +0300
committerJacques Lucke <jacques@blender.org>2020-12-02 18:34:06 +0300
commit9281a1f4ebcbbc9ebeb1f11a9f68e45fb2dff5f1 (patch)
tree820cf00bc5a1917f90be18b22ce75dcc6f3ff72d /source/blender/editors/space_node/node_draw.c
parent8522b1b6fbfd2590dab4ed4de3153d45a81f0371 (diff)
UI: Add new node colors for geometry nodes
During the development of the new nodes in the `geometry-nodes` branch the color of the new nodes wasn't considered, so all of the nodes ended up red, the color for "input" nodes. This patch introduces two new colors, one for "Geometry" and one for "Attributes". There are only two attribute nodes currently, but the next sprint will add two more, attribute mix, and sample from texture. The attribute nodes are conceptually different enough from the nodes that modify the geometry that they deserve their own color. Differential Revision: https://developer.blender.org/D9682
Diffstat (limited to 'source/blender/editors/space_node/node_draw.c')
-rw-r--r--source/blender/editors/space_node/node_draw.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_node/node_draw.c b/source/blender/editors/space_node/node_draw.c
index fb83414e435..fc7fa3a6caa 100644
--- a/source/blender/editors/space_node/node_draw.c
+++ b/source/blender/editors/space_node/node_draw.c
@@ -679,6 +679,10 @@ int node_get_colorid(bNode *node)
return TH_NODE_PATTERN;
case NODE_CLASS_LAYOUT:
return TH_NODE_LAYOUT;
+ case NODE_CLASS_GEOMETRY:
+ return TH_NODE_GEOMETRY;
+ case NODE_CLASS_ATTRIBUTE:
+ return TH_NODE_ATTRIBUTE;
default:
return TH_NODE;
}