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:
authorHans Goudey <h.goudey@me.com>2021-09-28 23:21:36 +0300
committerHans Goudey <h.goudey@me.com>2021-09-28 23:21:36 +0300
commit9f0a3a99ab664bc0f6378c5a4d6ac9e16f1f59f7 (patch)
tree6b9a5ac3b19cb1169f5712e150e8ad1cc02c3d50 /source/blender/makesrna/intern/rna_nodetree.c
parent283d76a70dba69665d08039a0a7c675c9efc7110 (diff)
Geometry Nodes: Fields version of attribute proximity node
Add a fields-aware implementation of the attribute proximity node. The Source position is an implicit position field, but can be connected with a position input node with alterations before use. The target input and mode function the same as the original node. Patch by Johnny Matthews with edits from Hans Goudey (@HooglyBoogly). Differential Revision: https://developer.blender.org/D12635
Diffstat (limited to 'source/blender/makesrna/intern/rna_nodetree.c')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c35
1 files changed, 34 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 556b8e94fe6..b5a42babc81 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -9972,7 +9972,7 @@ static void def_geo_collection_info(StructRNA *srna)
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
}
-static void def_geo_attribute_proximity(StructRNA *srna)
+static void def_geo_legacy_attribute_proximity(StructRNA *srna)
{
static const EnumPropertyItem target_geometry_element[] = {
{GEO_NODE_PROXIMITY_TARGET_POINTS,
@@ -10005,6 +10005,39 @@ static void def_geo_attribute_proximity(StructRNA *srna)
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_socket_update");
}
+static void def_geo_proximity(StructRNA *srna)
+{
+ static const EnumPropertyItem target_element_items[] = {
+ {GEO_NODE_PROX_TARGET_POINTS,
+ "POINTS",
+ ICON_NONE,
+ "Points",
+ "Calculate the proximity to the target's points (faster than the other modes)"},
+ {GEO_NODE_PROX_TARGET_EDGES,
+ "EDGES",
+ ICON_NONE,
+ "Edges",
+ "Calculate the proximity to the target's edges"},
+ {GEO_NODE_PROX_TARGET_FACES,
+ "FACES",
+ ICON_NONE,
+ "Faces",
+ "Calculate the proximity to the target's faces"},
+ {0, NULL, 0, NULL, NULL},
+ };
+
+ PropertyRNA *prop;
+
+ RNA_def_struct_sdna_from(srna, "NodeGeometryProximity", "storage");
+
+ prop = RNA_def_property(srna, "target_element", PROP_ENUM, PROP_NONE);
+ RNA_def_property_enum_items(prop, target_element_items);
+ RNA_def_property_enum_default(prop, GEO_NODE_PROX_TARGET_FACES);
+ RNA_def_property_ui_text(
+ prop, "Target Geometry", "Element of the target geometry to calculate the distance from");
+ RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_socket_update");
+}
+
static void def_geo_volume_to_mesh(StructRNA *srna)
{
PropertyRNA *prop;