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:
authorguitargeek <johnny.matthews@gmail.com>2021-10-01 17:40:57 +0300
committerguitargeek <johnny.matthews@gmail.com>2021-10-01 17:43:04 +0300
commitaae96176e8c36c8bcc64e94499975ff3b0b6ec0c (patch)
tree3c37275678a93d442fa202d1c7d4d75217de5941 /source/blender/makesrna/intern/rna_nodetree.c
parente1952c541af2fded4d1f92b55d94725be25914c6 (diff)
Geometry Nodes: Curve Subdivide Node with Fields
The curve subdivide node can now take an int field to specify the number of subdivisions to make at each curve segment. Reviewed by: Hans Goudey Differential Revision: https://developer.blender.org/D12534
Diffstat (limited to 'source/blender/makesrna/intern/rna_nodetree.c')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 894a8bad6da..ad1331faf2f 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -10280,7 +10280,7 @@ static void def_geo_curve_resample(StructRNA *srna)
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_socket_update");
}
-static void def_geo_curve_subdivide(StructRNA *srna)
+static void def_geo_legacy_curve_subdivide(StructRNA *srna)
{
PropertyRNA *prop;