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:
authorOmarSquircleArt <omar.squircleart@gmail.com>2019-08-02 13:02:02 +0300
committerOmarSquircleArt <omar.squircleart@gmail.com>2019-08-02 13:02:02 +0300
commit8dabeff402cbf2d0254def05b5cbf5257f3deed4 (patch)
tree2cd69b8e1a19f211835119d58e8506c9c12995f2 /source/blender/makesrna/intern
parent980d0f5b44ecb069ccf99060581c4f3191f598fd (diff)
Use more explicit names in Vector Math node.
Diffstat (limited to 'source/blender/makesrna/intern')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 751b2c2c752..eac2eb44fd0 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -169,10 +169,10 @@ const EnumPropertyItem rna_enum_node_vec_math_items[] = {
{NODE_VECTOR_MATH_NORMALIZE, "NORMALIZE", 0, "Normalize", ""},
{0, "", ICON_NONE, NULL, NULL},
{NODE_VECTOR_MATH_SNAP, "SNAP", 0, "Snap", "Entrywise floor"},
- {NODE_VECTOR_MATH_MOD, "MODULO", 0, "Modulo", "Entrywise modulo"},
- {NODE_VECTOR_MATH_ABS, "ABSOLUTE", 0, "Absolute", "Entrywise absolute"},
- {NODE_VECTOR_MATH_MIN, "MINIMUM", 0, "Minimum", "Entrywise minimum"},
- {NODE_VECTOR_MATH_MAX, "MAXIMUM", 0, "Maximum", "Entrywise maximum"},
+ {NODE_VECTOR_MATH_MODULO, "MODULO", 0, "Modulo", "Entrywise modulo"},
+ {NODE_VECTOR_MATH_ABSOLUTE, "ABSOLUTE", 0, "Absolute", "Entrywise absolute"},
+ {NODE_VECTOR_MATH_MINIMUM, "MINIMUM", 0, "Minimum", "Entrywise minimum"},
+ {NODE_VECTOR_MATH_MAXIMUM, "MAXIMUM", 0, "Maximum", "Entrywise maximum"},
{0, NULL, 0, NULL, NULL},
};