OpenMetaverse.ObjectManager.SelectObject C# (CSharp) Method

SelectObject() public method

Select a single object. This will cause the Simulator to send us an ObjectPropertiesPacket which will raise the ObjectProperties event
public SelectObject ( Simulator simulator, uint localID ) : void
simulator Simulator The the object is located
localID uint The Local ID of the object
return void
        public void SelectObject(Simulator simulator, uint localID)
        {
            SelectObject(simulator, localID, true);
        }

Same methods

ObjectManager::SelectObject ( Simulator simulator, uint localID, bool automaticDeselect ) : void