Geometry Nodes: Referencing Anonymous Attributes

Anonymous attributes are an important part of geometry nodes since their introduction together with fields.

They allow working with geometry attributes without having to worry about name conflicts. Contrary to named attributes, they are automatically removed when they are not necessary anymore. Attributes that stick around for longer than necessary always come with a cost. Often they are also only computed when they are actually needed. They also allow outputting attributes generated by nodes naturally as sockets.

Unfortunately, there are still a few things that canā€™t be done with anonymous attributes currently. This document presents these limitations and discusses potential solutions.

Current Limitations

The limitations that Iā€™m currently aware of roughly fall into two categories: joining and propagation settings.

Joining

The first limitation becomes apparent when trying to join geometries. Since anonymous attributes on different geometries are generally independent, the resulting geometry contains each anonymous attribute separately. They can only be combined using a ā€œhackā€ like simply adding them together. This works because the default value for attributes is generally zero.

The issue here is that a workaround is required to join the attributes and that this is cumbersome and less efficient. Of course one could use named attributes but then one would loose the benefits of anonymous attributes mentioned above (e.g. that the UV map is only generated when itā€™s actually used).

The existing workaround becomes even more problematic, when the geometries that are joined contain instances, and the anonymous attributes donā€™t exist on all sub-geometries. In this case, the Capture Attribute node will generate attributes even on unrelated sub-geometries.

The problem of joining anonymous attributes becomes even more important with the upcoming for-each zone, because there itā€™s not possible to use the same workaround. And even if it were possible, it would be significantly less efficient due to the potentially large number of geometries to be joined (e.g. one per iteration).

In the current design, the solution would be to evaluate the UV Map field in the For-Each Output node to create a new attribute there. This generally works fine, but has the same problems as the workaround above when the geometry contains multiple sub-geometries. Thatā€™s because then the UV Map attribute is created for all sub-geometries and not only for the ones that should have it. The same problem exists in simulation zones as well already.

Propagation Settings

This second limitation is less prominent so far, because we donā€™t have nodes that allow the user to customize how attributes are propagated yet. Itā€™s only a matter of time until we have those though, because itā€™s an important thing to control sometimes. For example, the Subdivision Surface node could support different ways to propagate UV maps on a per attribute basis. Currently, there is just one setting that applies to all attributes.

Use-cases for specifying this on a per attribute basis came up when we worked on hair, which use uv coordinates to specify attachment points. UV maps that use used for surface attachment should generally be propagated differently than ones which are only used for texturing.

image

For named attributes, a potential solution is somewhat obvious: the node could just have string inputs that specify which attributes use which propagation method. This could use some pattern matching language.

For anonymous attributes, we could have a variable number of field inputs and outputs for each kind of propagation mode. That could generally work, but also has the problem that this might generate attributes on sub-geometries that donā€™t have the original attribute.

Potential Solutions

Below I describe two similar but different solutions. The first solution introduces a new socket type to make the behavior more obvious. The second changes that so that no new socket type is necessary.

Attribute Reference Socket

The idea here is to introduce a different kind of socket that is just an attribute reference. This is more constrained than a field socket, because a field can reference and combine many attribute references. Itā€™s also similar to the attribute socket in an earlier proposal, but not the same. The main difference to the socket from that proposal is that here the socket can not contain a single value of the data type, just the attribute reference.

With this, Join Geometry could just have a variable number of multi-inputs. The given attribute names are then combined into a single attribute in the output. There is no field evaluation involved since we work directly on the attributes. The new attribute is only created on the sub-geometries that also had an attribute originally. Fields would generally be evaluated on all sub-geometries.

image

Nodes that create new anonymous attributes also output the new socket type. The new socket type implicitly converts to a field. The new socket shape mainly indicates that this references a single specific attribute. Passing this to a Store Named Attribute directly, would create the named attribute only on the parts of the geometry that had the anonymous attributes.

image

Field Attribute References

The idea here is to extend the definition of a field socket in geometry nodes to also capture the idea explicit attribute references. For context, currently a field is defined to be a function that outputs a value of the corresponding data type based on a context (the corresponding data type is e.g. float or integer). This also means that the only thing that can be done with fields is to compose and evaluate them.

The definition currently does not allow extracting extra information from a field (on a user level). We currently only allow that to simplify debugging with the viewer node which automatically derives the ā€œpreferred domainā€ from a field. That is ok because the output of the viewer node is not used for other procedural operations.

The definition of a field could be extended like so: A field is a function that outputs a value of the corresponding data type based on a context. Optionally, it can be a reference to exactly one attribute.

Most nodes stay exactly the same with this updated definition. However, the behavior of some nodes could change given the additional knowledge about a field. For example, the Store Named Attribute node could (maybe optionally) only create the named attribute for sub-geometries that have the attribute referenced by the field. The For-Each Zone Output node could just rename all anonymous attributes to have the same name instead of using field evaluation.

The main question that remains here is if any other visualization is necessary to communicate the difference between attribute references and normal fields to the user, or if socket inspection and warnings in nodes are good enough. For example, there could be a warning if a field input expects an attribute reference, but an arbitrary field is passed in.

10 Likes

I think something like String Array would solve this. Same for material access, and things like thatā€¦

From a user pov I think extending the field definition beats introducing yet another socket (especially if thereā€™s no behavioural difference between an attribute reference and a field) + having to manage attribute merges when joining geometries.

8 Likes

I donā€™t find the necessity of having a new socket type for this purpose. The difference between them seems too minimal. List is drastically different from current field by functionality and usage, and it definitely requires a new socket type for distinguishment. This new referencing doesnt bring much of a value than the cost and confusion of having a new socket type.

A midpoint is that, the socket icon can be extremely similar to the existing field input. so thst it doesnt bother users in regular usage until they look closely for debugging reasons. However, I still warning will be just sufficient.

3 Likes

I quite like the idea of being explicit between fields and pre-computed attributes. I think having the input and output of the Capture Attribute especially to be visually different, is an important distinction to show that the value is being computed, and what is being passed on is just that attribute, rather than the field.

Would this also involve changing the output for the Named Attribute nodes?

It certainly adds more visual complexity to the node tree, but overall I would consider being more explicit over what is and isnā€™t a field to help clear up some confusion about when fields are being computed.

2 Likes

AFA I understand, both sockets are still fields carrying anonymous attribute and are only computed when they are used. On the contrary, Named Attribute is pre-computed and will always stay with the geometry unless you add ā€œremove named attributeā€.

So having a new socket type doesnt explicitly show its computational status. Itā€™s just that field is only carried on a more specific sub-geometry, so that when you join geometry, you dont create extra 0, 0, 0, 0 to fill the space where this anonymous atrribute does not previously exist.

So new socket is more between current field(anonymous attribute) and named attribute. in which it will be deleted if not being used, but it will only stay with geometry where it is generated.
In many cases, however, it doesnt bring anything new imo to justify a new socket icon.

If there are attribute (ref) sockets and field sockets in the nodes,
nodes like ā€˜positionā€™, ā€˜indexā€™ ā€¦ attributes which are fed into a field ā€¦
could also use an attribute (ref) socket instead of a field socket.