So I have 2 objects with a lot of instances of each on screen. They all have a "z" variable which determines what order they should be in. So my problem is... how do I get them to sort by this variable?
If it were just one object you could do a ForEach (ordered) but it's multiple objects, so it needs to order them both and not just one at a time.
I tried to group the 2 objects in a family and then ForEach (ordered) using that family, but the problem is that I can't check the instance's z variable anymore since I'm referencing the family and not the individual objects.
Is this possible without any add-ons?