Hello,
I have a parent object which spawns three identical child objects, each of which should have different private variables.
However, if I set it like:
Parent Spawn 'Child'
Set Child('Variable') to "eldest"
Parent Spawn 'Child'
Set Child('Variable') to "middle"
Parent Spawn 'Child'
Set Child('Variable') to "youngest"
All Child instances have the variable at "youngest". Shouldn't it automatically pick the newly created object? How do I make sure each child instance is correctly assigned a value?