Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.SetStartLocationRequestPacket$StartLocationDataBlock


  /// </summary>
  /// <remarks>will fire an AlertMessage (<seealso cref="E:OpenMetaverse.AgentManager.OnAlertMessage"/>) with
  /// success or failure message</remarks>
  public void SetHome()
  {
    SetStartLocationRequestPacket s = new SetStartLocationRequestPacket();
    s.AgentData = new SetStartLocationRequestPacket.AgentDataBlock();
    s.AgentData.AgentID = Client.self.getAgentID();
    s.AgentData.SessionID = Client.self.getSessionID();
    s.StartLocationData = new SetStartLocationRequestPacket.StartLocationDataBlock();
    s.StartLocationData.LocationPos = Client.self.getSimPosition();
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.SetStartLocationRequestPacket$StartLocationDataBlock

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.