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:
authorJohnny Matthews <johnny.matthews@gmail.com>2021-11-30 16:21:14 +0300
committerJohnny Matthews <johnny.matthews@gmail.com>2021-11-30 16:21:14 +0300
commit1cd9fcd98d5f1f11d2c20a35ae19142e5458068c (patch)
tree7600f6bc0084c126ca2359aaef3f1e6a1acc9677 /release
parent2f7bec04e8e7e423f11767535b469cdeb5062b14 (diff)
Geometry Nodes: Rename Curve Parameter, Add Index on Spline
- Rename the Curve Parameter node to Spline Parameter. - Add "Index on Spline" to the node. This output is the index of the current point on it's parent spline rather than the entrire curve. Differential Revision: https://developer.blender.org/D13275
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/nodeitems_builtins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/nodeitems_builtins.py b/release/scripts/startup/nodeitems_builtins.py
index 4cb3eae3aec..4b43a3a843c 100644
--- a/release/scripts/startup/nodeitems_builtins.py
+++ b/release/scripts/startup/nodeitems_builtins.py
@@ -111,7 +111,7 @@ def curve_node_items(context):
yield NodeItem("GeometryNodeTrimCurve")
yield NodeItemCustom(draw=lambda self, layout, context: layout.separator())
yield NodeItem("GeometryNodeInputCurveHandlePositions")
- yield NodeItem("GeometryNodeCurveParameter")
+ yield NodeItem("GeometryNodeSplineParameter")
yield NodeItem("GeometryNodeInputTangent")
yield NodeItem("GeometryNodeInputCurveTilt")
yield NodeItem("GeometryNodeCurveEndpointSelection")