Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <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 set the group id on</param>
  /// <param name="groupID">The Groups ID</param>
  public void SetObjectsGroup(Simulator simulator, List<Long> localIds, UUID groupID)
  {
    ObjectGroupPacket packet = new ObjectGroupPacket();
    packet.AgentData.AgentID = Client.self.getAgentID();
    packet.AgentData.GroupID = groupID;
    packet.AgentData.SessionID = Client.self.getSessionID();

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

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.ObjectGroupPacket$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.