From 0427ab89f1753a44b30cbc35ce021cbbdc845109 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Thu, 10 Aug 2017 18:52:45 +0300 Subject: fix missing source folder --- .../event/entity/PlaySoundAtEntityEvent.html | 356 +++++++++++++++++++++ 1 file changed, 356 insertions(+) create mode 100644 javadoc/net/minecraftforge/event/entity/PlaySoundAtEntityEvent.html (limited to 'javadoc/net/minecraftforge/event/entity/PlaySoundAtEntityEvent.html') diff --git a/javadoc/net/minecraftforge/event/entity/PlaySoundAtEntityEvent.html b/javadoc/net/minecraftforge/event/entity/PlaySoundAtEntityEvent.html new file mode 100644 index 0000000..53e177f --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/PlaySoundAtEntityEvent.html @@ -0,0 +1,356 @@ + + + + + +PlaySoundAtEntityEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity
+

Class PlaySoundAtEntityEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class PlaySoundAtEntityEvent
    +extends EntityEvent
    +
    PlaySoundAtEntityEvent is fired a sound is to be played at an Entity
    + This event is fired whenever a sound is set to be played at an Entity such as in + EntityPlayerSP#playSound(String, float, float), World#playSoundAtEntity(Entity, String, float, float), + and World#playerSoundToNearExcept(EntityPlayer, String, float, float).
    +
    + name contains the name of the sound to be played at the Entity.
    + volume contains the volume at which the sound is to be played.
    + pitch contains the pitch at which the sound is to be played.
    + Changing the name field will cause the sound of this name to be played instead of the originally intended sound.
    +
    + This event is Cancelable.
    + If this event is canceled, the sound is not played.
    +
    + This event does not have a result. HasResult
    +
    + This event is fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        name

        +
        public java.lang.String name
        +
      • +
      + + + +
        +
      • +

        volume

        +
        public final float volume
        +
      • +
      + + + +
        +
      • +

        pitch

        +
        public final float pitch
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PlaySoundAtEntityEvent

        +
        public PlaySoundAtEntityEvent(Entity entity,
        +                      java.lang.String name,
        +                      float volume,
        +                      float pitch)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + -- cgit v1.2.3