Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <summary>
  /// Inform the sim which wearables are part of our current outfit
  /// </summary>
  private void SendAgentIsNowWearing()
  {
    AgentIsNowWearingPacket wearing = new AgentIsNowWearingPacket();
    wearing.AgentData.AgentID = Client.self.getAgentID();
    wearing.AgentData.SessionID = Client.self.getSessionID();
    wearing.WearableData = new AgentIsNowWearingPacket.WearableDataBlock[WEARABLE_COUNT];

    synchronized (Wearables)
View Full Code Here

TOP

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

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.