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:
authorJacques Lucke <jacques@blender.org>2020-12-17 13:55:45 +0300
committerJacques Lucke <jacques@blender.org>2020-12-17 13:56:18 +0300
commit0eedba328df3cbc326900c34cdfc39b8554ad5ec (patch)
tree866fc2d31df07f6d3059cbf3b64c6492268def9b /source/blender/makesdna/DNA_node_types.h
parent2945c1e3e55ee12c90464246977de17d28870eb8 (diff)
Geometry Nodes: add Attribute Color Ramp node
Differential Revision: https://developer.blender.org/D9861 Ref T82585.
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 34a5372892c..7ad339c66af 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -1084,6 +1084,10 @@ typedef struct NodeAttributeMix {
uint8_t input_type_b;
} NodeAttributeMix;
+typedef struct NodeAttributeColorRamp {
+ ColorBand color_ramp;
+} NodeAttributeColorRamp;
+
/* script node mode */
#define NODE_SCRIPT_INTERNAL 0
#define NODE_SCRIPT_EXTERNAL 1