OpenMetaverse.AgentManager.Sit C# (CSharp) Method

Sit() public method

Follows a call to RequestSit to actually sit on the object
public Sit ( ) : void
return void
        public void Sit()
        {
            AgentSitPacket sit = new AgentSitPacket();
            sit.AgentData.AgentID = Client.Self.AgentID;
            sit.AgentData.SessionID = Client.Self.SessionID;
            Client.Network.SendPacket(sit);
        }