When the event for a coord change comes in, it seems to carry three separate tables mapping units to the new value, one each for x, y and z. This confused me for a bit, as I was expecting a single table along the lines of:
{ unitId -> {x,y,z} , ... }
But instead it's:
{ unitId -> x , ... } { unitId -> y , ... } { unitId -> z , ... }
... if that makes sense
Anyway, my question is, would there ever be a case where a unit ID could exist in one of the tables, but not all three?
Thanks,
DS



Reply With Quote

Bookmarks