Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.RezMultipleAttachmentsFromInvPacket$AgentDataBlock


  /// <param name="removeExistingFirst">If true, tells simulator to remove existing attachment
  /// first</param>
  public void AddAttachments(List<InventoryItem> attachments, boolean removeExistingFirst)
  {
    // Use RezMultipleAttachmentsFromInv  to clear out current attachments, and attach new ones
    RezMultipleAttachmentsFromInvPacket attachmentsPacket = new RezMultipleAttachmentsFromInvPacket();
    attachmentsPacket.AgentData.AgentID = Client.self.getAgentID();
    attachmentsPacket.AgentData.SessionID = Client.self.getSessionID();

    attachmentsPacket.HeaderData.CompoundMsgID = UUID.Random();
    attachmentsPacket.HeaderData.FirstDetachAll = removeExistingFirst;
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.RezMultipleAttachmentsFromInvPacket$AgentDataBlock

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.