Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <param name="simulator">A reference to the <seealso cref="OpenMetaverse.Simulator"/> object where the objects reside</param>
  /// <param name="localIDs">An array which contains the IDs of the objects to link</param>
  /// <remarks>The last object in the array will be the root object of the linkset TODO: Is this true?</remarks>
  public void LinkPrims(Simulator simulator, List<Long> localIDs)
  {
    ObjectLinkPacket packet = new ObjectLinkPacket();

    packet.AgentData.AgentID = Client.self.getAgentID();
    packet.AgentData.SessionID = Client.self.getSessionID();

    packet.ObjectData = new ObjectLinkPacket.ObjectDataBlock[localIDs.size()];
View Full Code Here

TOP

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

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.