[Bf-blender-cvs] [51f10a31434] geometry-nodes-curve-to-points-node: Fix RNA struct type

Hans Goudey noreply at git.blender.org
Wed Jun 9 19:32:58 CEST 2021


Commit: 51f10a31434f17d22fdc7f915d249458d497b348
Author: Hans Goudey
Date:   Tue Jun 8 17:51:31 2021 -0500
Branches: geometry-nodes-curve-to-points-node
https://developer.blender.org/rB51f10a31434f17d22fdc7f915d249458d497b348

Fix RNA struct type

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

M	source/blender/makesrna/intern/rna_nodetree.c

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

diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 1e448b0ca1a..547d0f2f346 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -9864,7 +9864,7 @@ static void def_geo_curve_to_points(StructRNA *srna)
       {0, NULL, 0, NULL, NULL},
   };
 
-  RNA_def_struct_sdna_from(srna, "NodeGeometryCurveResample", "storage");
+  RNA_def_struct_sdna_from(srna, "NodeGeometryCurveToPoints", "storage");
 
   prop = RNA_def_property(srna, "mode", PROP_ENUM, PROP_NONE);
   RNA_def_property_enum_items(prop, mode_items);



More information about the Bf-blender-cvs mailing list