[Bf-blender-cvs] [48f26435568] temp-geometry-nodes-fields-prototype: remove dead code

Jacques Lucke noreply at git.blender.org
Tue Aug 10 16:10:17 CEST 2021


Commit: 48f2643556887f5bcd6e7a311af529d567a1a38d
Author: Jacques Lucke
Date:   Tue Aug 10 15:42:15 2021 +0200
Branches: temp-geometry-nodes-fields-prototype
https://developer.blender.org/rB48f2643556887f5bcd6e7a311af529d567a1a38d

remove dead code

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

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 7859a9783c0..c486057f1ed 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -10243,24 +10243,6 @@ static void def_geo_attribute_transfer(StructRNA *srna)
   RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
 }
 
-static void def_geo_extrude(StructRNA *srna)
-{
-  PropertyRNA *prop;
-
-  prop = RNA_def_property(srna, "distance_mode", PROP_ENUM, PROP_NONE);
-  RNA_def_property_enum_sdna(prop, NULL, "custom1");
-  RNA_def_property_enum_items(prop, rna_node_geometry_attribute_input_type_items_float);
-  RNA_def_property_ui_text(
-      prop, "Distance", "Changes the Distance input between Float and Attribute");
-  RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_socket_update");
-
-  prop = RNA_def_property(srna, "inset_mode", PROP_ENUM, PROP_NONE);
-  RNA_def_property_enum_sdna(prop, NULL, "custom2");
-  RNA_def_property_enum_items(prop, rna_node_geometry_attribute_input_type_items_float);
-  RNA_def_property_ui_text(prop, "Inset", "Changes the Inset input between Float and Attribute");
-  RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_socket_update");
-}
-
 static void def_geo_input_material(StructRNA *srna)
 {
   PropertyRNA *prop;



More information about the Bf-blender-cvs mailing list