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>2021-01-13 19:10:25 +0300
committerHans Goudey <h.goudey@me.com>2021-01-13 19:10:25 +0300
commit8df0268e2bac6fce22b1642555474fe8ccc8538d (patch)
treeec3328031432343f78ffd6a26c96c77f96701142 /source/blender/makesdna
parent80578a9d54fbff72065fddb5ac61bc9c0288aebd (diff)
Geometry Nodes: Rename "Rotate Points" to "Point Rotate"
This is consistent with the other node names, giving (almost) all of the nodes in the "Point" category the same prefix.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_node_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 3da0409447b..c3c22b1e853 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -1579,13 +1579,13 @@ typedef enum GeometryNodePointDistributeMethod {
} GeometryNodePointDistributeMethod;
typedef enum GeometryNodeRotatePointsType {
- GEO_NODE_ROTATE_POINTS_TYPE_EULER = 0,
- GEO_NODE_ROTATE_POINTS_TYPE_AXIS_ANGLE = 1,
+ GEO_NODE_POINT_ROTATE_TYPE_EULER = 0,
+ GEO_NODE_POINT_ROTATE_TYPE_AXIS_ANGLE = 1,
} GeometryNodeRotatePointsType;
typedef enum GeometryNodeRotatePointsSpace {
- GEO_NODE_ROTATE_POINTS_SPACE_OBJECT = 0,
- GEO_NODE_ROTATE_POINTS_SPACE_POINT = 1,
+ GEO_NODE_POINT_ROTATE_SPACE_OBJECT = 0,
+ GEO_NODE_POINT_ROTATE_SPACE_POINT = 1,
} GeometryNodeRotatePointsSpace;
typedef enum GeometryNodeAlignRotationToVectorAxis {