OpenMetaverse.ObjectManager.SelectObjects C# (CSharp) Method

SelectObjects() public method

Select multiple objects. This will cause the Simulator to send us an ObjectPropertiesPacket which will raise the ObjectProperties event
public SelectObjects ( Simulator simulator, uint localIDs ) : void
simulator Simulator The the objects are located
localIDs uint An array containing the Local IDs of the objects
return void
        public void SelectObjects(Simulator simulator, uint[] localIDs)
        {
            SelectObjects(simulator, localIDs, true);
        }

Same methods

ObjectManager::SelectObjects ( Simulator simulator, uint localIDs, bool automaticDeselect ) : void