Package com.ngt.jopenmetaverse.shared.protocol

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


  protected void AgentDataUpdateHandler(Object sender, PacketReceivedEventArgs e) throws UnsupportedEncodingException
  {
    Packet packet = e.getPacket();
    Simulator simulator = e.getSimulator();

    AgentDataUpdatePacket p = (AgentDataUpdatePacket)packet;

    if (p.AgentData.AgentID.equals(simulator.Client.self.getAgentID()))
    {
      firstName = Utils.bytesWithTrailingNullByteToString(p.AgentData.FirstName);
      lastName = Utils.bytesWithTrailingNullByteToString(p.AgentData.LastName);
View Full Code Here

TOP

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

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.