Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.ObjectDetachPacket$ObjectDataBlock


  /// This will always be the simulator the avatar is currently in
  /// </param>
  /// <param name="localIDs">An array which contains the IDs of the objects to detach</param>
  public void DetachObjects(Simulator simulator, List<Long> localIDs)
  {
    ObjectDetachPacket detach = new ObjectDetachPacket();
    detach.AgentData.AgentID = Client.self.getAgentID();
    detach.AgentData.SessionID = Client.self.getSessionID();
    detach.ObjectData = new ObjectDetachPacket.ObjectDataBlock[localIDs.size()];

    for (int i = 0; i < localIDs.size(); i++)
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.ObjectDetachPacket$ObjectDataBlock

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.