[Bf-blender-cvs] [11392829adf] blender-v3.0-release: Fix T92316: Inconsistent name for Set Curve Tilt node

Hans Goudey noreply at git.blender.org
Tue Nov 2 23:39:08 CET 2021


Commit: 11392829adfebd95286586362323ed6a39c31a5c
Author: Hans Goudey
Date:   Tue Nov 2 17:38:58 2021 -0500
Branches: blender-v3.0-release
https://developer.blender.org/rB11392829adfebd95286586362323ed6a39c31a5c

Fix T92316: Inconsistent name for Set Curve Tilt node

===================================================================

M	source/blender/nodes/geometry/nodes/node_geo_set_curve_tilt.cc

===================================================================

diff --git a/source/blender/nodes/geometry/nodes/node_geo_set_curve_tilt.cc b/source/blender/nodes/geometry/nodes/node_geo_set_curve_tilt.cc
index dde6d0bab92..a861c35f738 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_set_curve_tilt.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_set_curve_tilt.cc
@@ -71,7 +71,7 @@ void register_node_type_geo_set_curve_tilt()
 {
   static bNodeType ntype;
 
-  geo_node_type_base(&ntype, GEO_NODE_SET_CURVE_TILT, "Set Tilt", NODE_CLASS_GEOMETRY, 0);
+  geo_node_type_base(&ntype, GEO_NODE_SET_CURVE_TILT, "Set Curve Tilt", NODE_CLASS_GEOMETRY, 0);
   ntype.geometry_node_execute = blender::nodes::geo_node_set_curve_tilt_exec;
   ntype.declare = blender::nodes::geo_node_set_curve_tilt_declare;
   nodeRegisterType(&ntype);



More information about the Bf-blender-cvs mailing list