Package com.ngt.jopenmetaverse.shared.protocol

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


  /// </summary>
  /// <param name="simulator">The <see cref="Simulator"/> the object is located</param>       
  /// <param name="localID">The Local ID of the object</param>
  public void DeselectObject(Simulator simulator, long localID)
  {
    ObjectDeselectPacket deselect = new ObjectDeselectPacket();

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

    deselect.ObjectData = new ObjectDeselectPacket.ObjectDataBlock[1];
View Full Code Here


  /// </summary>
  /// <param name="simulator">The <see cref="Simulator"/> the objects are located</param>
  /// <param name="localIDs">An array containing the Local IDs of the objects</param>
  public void DeselectObjects(Simulator simulator, long[] localIDs)
  {
    ObjectDeselectPacket deselect = new ObjectDeselectPacket();

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

    deselect.ObjectData = new ObjectDeselectPacket.ObjectDataBlock[localIDs.length];
View Full Code Here

TOP

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

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.