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:
authorJarrett Johnson <jarrett.johnson>2021-10-16 00:33:27 +0300
committerHans Goudey <h.goudey@me.com>2021-10-16 00:33:27 +0300
commit41dc55874742e8ee9d1361d729bec25514e1e3ae (patch)
treed59d1ec091799f93fc7c11bc76aa415232437f0e /source/blender/makesdna
parentc383397d072f3fdc10857bd4b0e484c0de469e2f (diff)
Geometry Nodes: Rotate Euler: Use "Local" instead of "Point"
Since points aren't relevant in function nodes, replace all mentions of it with "local" to illustrate rotations done in local-space instead. Differential Revision: https://developer.blender.org/D12881
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_node_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index d4a2b3449e5..dd749a9dc60 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -2090,7 +2090,7 @@ typedef enum GeometryNodeRotatePointsSpace {
typedef enum FunctionNodeRotateEulerSpace {
FN_NODE_ROTATE_EULER_SPACE_OBJECT = 0,
- FN_NODE_ROTATE_EULER_SPACE_POINT = 1,
+ FN_NODE_ROTATE_EULER_SPACE_LOCAL = 1,
} FunctionNodeRotateEulerSpace;
typedef enum GeometryNodeAlignRotationToVectorAxis {