Fix T92316: Inconsistent name for Set Curve Tilt node

This commit is contained in:
Hans Goudey 2021-11-02 17:38:58 -05:00
parent f674176d77
commit 11392829ad
Notes: blender-bot 2023-02-14 03:59:42 +01:00
Referenced by issue #93081, Cycles rendering artefacts when camera placed inside volumetric material
Referenced by issue #92779, UI: Can't make 3d viewport header fully transparent in 3.0
Referenced by issue #92316, Geometry Nodes name Set curve tilt versus Set Tilt
1 changed files with 1 additions and 1 deletions

View File

@ -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);