that's probably a trivial question but I can't get this to work. Basically I've created a sphere and done some calculation in an AttributeWrangle node, the results of my calculation are two values which I'm storing as detail attributes: MinElevation and MaxElevation. If I look at my geometry spreadsheet I can see my two new attributes with the right values.
Now I'd like to create another sphere in the same network and set it's radius to the MinElevation value. I've tried the following without success:
* Setting the Radius field value of the new sphere to :
detail("../sphere1" , "MaxElevation", 0);
* Testing the following code in another attributeWrangle node placed under the new sphere:
float value = detail("../sphere1/attribwrangle1" , "MaxElevation", 0);
float value; getattribute("../sphere1", value, "detail", "MaxElevation", 0, 0); getattribute("../attribwrangle1", value, "detail", "MaxElevation", 0, 0);
Thanks a lot!


