Hello! It seems that it should be possible to sample a Field List from userdata in a Python Tag, however I am having a hard time getting going since there aren't many examples in existence.
What I would really like to be able to do is this (sorry for the semi-psuedocode):
# get the field list from userdata on the python tag
fieldList = op[c4d.ID_USERDATA,1]
# sample the field at a specific point in global 3D space
weight = fieldList.Sample(c4d.Vector(0, 0, 0))
I know the above code does not work, but maybe it is helpful describing what I'm after.
Is this somehow possible in a Python Tag?