We're writing a write a built form rule that consists of a podium and four towers. Each tower is to have their own configurable setbacks.
We've tried placing a splitArea command with a splitArea command, but this simply creates
splitArea(z) { ~1 : splitArea(x) { '0.5: TowerLots}*
| ~1 : splitArea(x) {'1 : TowerLots}*
}
split.index 0 is tower 1
split.index 1 is tower 1
split.index 2 is tower 2
split.index 3 is tower 2

Wondering if anyone has any ideas on how best to split the podium into four so we can assign a tower to each of the split indexes?
i.e.
split.index 0 is tower 1
split.index 1 is tower 2
split.index 2 is tower 3
split.index 3 is tower 4
Thanks.