Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.AttachedSoundPacket$DataBlockBlock


      /// <param name="e">The EventArgs object containing the packet data</param>
      protected void AttachedSoundHandler(Object sender, PacketReceivedEventArgs e)
      {           
          if (onAttachedSound != null)
          {
              AttachedSoundPacket sound = (AttachedSoundPacket)e.getPacket();

              onAttachedSound.raiseEvent(new AttachedSoundEventArgs(e.getSimulator(), sound.DataBlock.SoundID, sound.DataBlock.OwnerID, sound.DataBlock.ObjectID,
                  sound.DataBlock.Gain, SoundFlags.get(sound.DataBlock.Flags)));               
          }
      }
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.AttachedSoundPacket$DataBlockBlock

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.