Examples of PreloadSoundPacket


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

      /// <param name="e">The EventArgs object containing the packet data</param>
      protected void PreloadSoundHandler(Object sender, PacketReceivedEventArgs e)
      {           
          if (onPreloadSound != null)
          {
              PreloadSoundPacket preload = (PreloadSoundPacket)e.getPacket();

              for (PreloadSoundPacket.DataBlockBlock data : preload.DataBlock)
              {
                  onPreloadSound.raiseEvent(new PreloadSoundEventArgs(e.getSimulator(), data.SoundID, data.OwnerID, data.ObjectID));                   
              }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.