Geometry Nodes: Rename transfer attribute geometry input

Conceptually, this is the geometry that data is taken from,
not the target of an operation, so rename it from "Target"
to "Source". This was common user feedback and agreed
on in a recent sub-module meeting.
This commit is contained in:
2022-01-14 16:42:04 -06:00
parent 6e926e9b56
commit 6a16a9e661
2 changed files with 4 additions and 3 deletions

View File

@@ -2544,11 +2544,12 @@ void blo_do_versions_300(FileData *fd, Library *UNUSED(lib), Main *bmain)
}
}
/* Rename socket on "String to Curves"-node. */
/* Rename geometry socket on "String to Curves" node and "Transfer Attribute" node. */
LISTBASE_FOREACH (bNodeTree *, ntree, &bmain->nodetrees) {
if (ntree->type == NTREE_GEOMETRY) {
version_node_output_socket_name(
ntree, GEO_NODE_STRING_TO_CURVES, "Curves", "Curve Instances");
version_node_input_socket_name(ntree, GEO_NODE_TRANSFER_ATTRIBUTE, "Target", "Source");
}
}
}