Examples of LinkInventoryItemPacket


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

  /// <param name="invType">Inventory Type</param>
  /// <param name="transactionID">Transaction UUID</param>
  /// <param name="callback">Method to call upon creation of the link</param>
  public void CreateLink(UUID folderID, UUID itemID, String name, String description, AssetType assetType, InventoryType invType, UUID transactionID, EventObserver<ItemCreatedCallbackArg> callback)
  {
    LinkInventoryItemPacket create = new LinkInventoryItemPacket();
    create.AgentData.AgentID = Client.self.getAgentID();
    create.AgentData.SessionID = Client.self.getSessionID();

    create.InventoryBlock.CallbackID = RegisterItemCreatedCallback(callback);
    create.InventoryBlock.FolderID = folderID;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.