Hi, I have a drag and drop setup which validates by checking a variable ("value") against the container variable of the same name.
This works fine.
However, the 'container' items can be different objects (bowl, cup, glass, etc), so I moved the variable to the family level:
Family: Container // Property: "value"
==> Glass
If I check the water.value = Glass.value it works fine. However, if instead I check against the family, the check fails:
water.value = Container.value
Is this expected behavior?