BoundingBox. It conjures up images of a vast plain where the boxes roam wild and free.
For some reason the following does not work:
_unit = _this select 0;
_bar = nearestObjects[_unit,["STATIC"],20];
for [{_j = 0},{_j < count _bar},{_j = _j + 1}] do
{
_c = boundingBox (_bar select j);
hint format ["%1\n%2",(_bar select _j), _c];
sleep 5;
};
_c comes out as a null array. Any suggestions?