Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <summary>
  /// Instructs the simulator to stop sending update (and possibly other) packets
  /// </summary>
  public void Pause()
  {
    AgentPausePacket pause = new AgentPausePacket();
    pause.AgentData.AgentID = Client.self.getAgentID();
    pause.AgentData.SessionID = Client.self.getSessionID();
    //                  pause.AgentData.SerialNum = (uint)Interlocked.Exchange(ref pauseSerial, pauseSerial + 1);
    pause.AgentData.SerialNum = pauseSerial.getAndIncrement();
View Full Code Here

TOP

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

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.