OpenMetaverse.AgentManager.Touch C# (CSharp) Method

Touch() public method

Touches an object
public Touch ( uint objectLocalID ) : void
objectLocalID uint an unsigned integer of the objects ID within the simulator
return void
        public void Touch(uint objectLocalID)
        {
            Client.Self.Grab(objectLocalID);
            Client.Self.DeGrab(objectLocalID);
        }