Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.AgentHeightWidthPacket$HeightWidthBlockBlock


  /// </summary>
  /// <param name="height">New height of the viewer window</param>
  /// <param name="width">New width of the viewer window</param>
  public void SetHeightWidth(int height, int width)
  {
    AgentHeightWidthPacket heightwidth = new AgentHeightWidthPacket();
    heightwidth.AgentData.AgentID = Client.self.getAgentID();
    heightwidth.AgentData.SessionID = Client.self.getSessionID();
    heightwidth.AgentData.CircuitCode = Client.network.getCircuitCode();
    heightwidth.HeightWidthBlock.Height = height;
    heightwidth.HeightWidthBlock.Width = width;
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.AgentHeightWidthPacket$HeightWidthBlockBlock

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.