Geometry Nodes: show indicator when realize instances node is in legacy mode

For the majority of node groups created in Blender 3.0 the behavior does not change.
So far we only found a single file where this setting has an effect.

Differential Revision: https://developer.blender.org/D14078
This commit is contained in:
Jacques Lucke 2022-02-11 12:24:07 +01:00
parent 0263c8238b
commit b38f40e904
Notes: blender-bot 2023-05-03 10:14:48 +02:00
Referenced by issue #96141, daily build Realize instances legacy ????
Referenced by issue #94850, Add warning when Realize Instances node is in legacy mode
1 changed files with 9 additions and 0 deletions

View File

@ -38,6 +38,15 @@ static void node_geo_exec(GeoNodeExecParams params)
{
const bool legacy_behavior = params.node().custom1 & GEO_NODE_REALIZE_INSTANCES_LEGACY_BEHAVIOR;
if (legacy_behavior) {
params.error_message_add(
NodeWarningType::Info,
TIP_("This node uses legacy behavior with regards to attributes on "
"instances. The behavior can be changed in the node properties in "
"the side bar. In most cases the new behavior is the same for files created in "
"Blender 3.0"));
}
GeometrySet geometry_set = params.extract_input<GeometrySet>("Geometry");
geometry::RealizeInstancesOptions options;
options.keep_original_ids = legacy_behavior;