How to have multiple Worlds (globe vs ground simulation)¶
- Create two worlds:
- Give each one its own schedule (recommended):
- Run both each frame (same
dt):
1 2 |
-
Share data explicitly between worlds (pick one):
-
copy values at a known point (end of
sim, start of othersim) - or have a “bridge” step in your outer loop that reads from one world and writes into the other (via normal
add/setor viacmd()+flush())