Hello all,
I’m strolling to get the values of all inputs and use them inside the script itself.
using:
for input in ghenv.Component.Params.Input:
print input.Name
I can get the names of all inputs, but using:
print input.VolatileData.AllData(True)
doesn’t let me use the value.
If I create a variable as a = input.VolatileData.AllData(True)
and output that variable it works, but I really need to iterate over all components, and use the values inside the script.
I’m sure it is something really easy that I’m missing.
Thank you
Python_Misc.gh (6.5 KB)