From 9281a1f4ebcbbc9ebeb1f11a9f68e45fb2dff5f1 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Tue, 1 Dec 2020 10:28:29 -0500 Subject: 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 --- source/blender/editors/space_node/node_draw.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source/blender/editors/space_node') 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; } -- cgit v1.2.3