Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <summary>
  /// Instructs the simulator to resume sending update packets (unpause)
  /// </summary>
  public void Resume()
  {
    AgentResumePacket resume = new AgentResumePacket();
    resume.AgentData.AgentID = Client.self.getAgentID();
    resume.AgentData.SessionID = Client.self.getSessionID();
    resume.AgentData.SerialNum = pauseSerial.getAndIncrement();

    Client.network.SendPacket(resume, this);
View Full Code Here

TOP

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

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.