Hello I’m currently building a tool and want to use a ramp in a multiparm. How do I link the ramp parameter from the multiparm to a node inside my tool? For floats, strings and int I found that you link it with strcat and the iteration value from the loop but I can’t figure out how to do it with ramps.
Some expressions I tried so far:
`chs(strcat("../ramp",detail(-1, "iteration", 0)+1))`
chramp(strcat("../ramp",detail(-1, "iteration", 0)+1))
`chramp(strcat("../ramp",detail(-1, "iteration", 0)+1))`
chramp(`chs(strcat("../ramp", detail(-1, "iteration", 0)+1))`, 1, 1)

