Package com.ngt.jopenmetaverse.shared.protocol

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


  /// </summary>
  /// <param name="regionName">The name of the region</param>
  /// <param name="layer">The type of layer</param>
  public void RequestMapRegion(String regionName, GridLayerType layer)
  {
    MapNameRequestPacket request = new MapNameRequestPacket();

    request.AgentData.AgentID = Client.self.getAgentID();
    request.AgentData.SessionID = Client.self.getSessionID();
    request.AgentData.Flags = layer.getIndex();
    request.AgentData.EstateID = 0; // Filled in on the sim
View Full Code Here

TOP

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

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.