Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.DetachAttachmentIntoInvPacket


  /// Detach an item from our agent
  /// </summary>
  /// <param name="itemID">The inventory itemID of the item to detach</param>
  public void Detach(UUID itemID)
  {
    DetachAttachmentIntoInvPacket detach = new DetachAttachmentIntoInvPacket();
    detach.ObjectData.AgentID = Client.self.getAgentID();
    detach.ObjectData.ItemID = itemID;

    Client.network.SendPacket(detach);
  }
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.DetachAttachmentIntoInvPacket

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.