Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.AgentAnimationPacket$AgentDataBlock


  /// <param name="animations">A list of animation <seealso cref="UUID"/>s, and whether to
  /// turn that animation on or off</param>
  /// <param name="reliable">Whether to ensure delivery of this packet or not</param>
  public void Animate(Map<UUID, Boolean> animations, boolean reliable)
  {
    AgentAnimationPacket animate = new AgentAnimationPacket();
    animate.header.Reliable = reliable;

    animate.AgentData.AgentID = Client.self.getAgentID();
    animate.AgentData.SessionID = Client.self.getSessionID();
    animate.AnimationList = new AgentAnimationPacket.AnimationListBlock[animations.size()];
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.AgentAnimationPacket$AgentDataBlock

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.