From dc3df3edd5843bde0c1335d6a8e460b2c832aa48 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sat, 17 Jun 2017 08:12:18 +0300 Subject: full project files --- .../event/terraingen/OreGenEvent.html | 390 +++++++++++++++++++++ 1 file changed, 390 insertions(+) create mode 100644 javadoc/net/minecraftforge/event/terraingen/OreGenEvent.html (limited to 'javadoc/net/minecraftforge/event/terraingen/OreGenEvent.html') diff --git a/javadoc/net/minecraftforge/event/terraingen/OreGenEvent.html b/javadoc/net/minecraftforge/event/terraingen/OreGenEvent.html new file mode 100644 index 0000000..847584b --- /dev/null +++ b/javadoc/net/minecraftforge/event/terraingen/OreGenEvent.html @@ -0,0 +1,390 @@ + + + + + +OreGenEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.terraingen
+

Class OreGenEvent

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    OreGenEvent.GenerateMinable, OreGenEvent.Post, OreGenEvent.Pre
    +
    +
    +
    +
    public class OreGenEvent
    +extends Event
    +
    OreGenEvent is fired when an event involving ore generation occurs.
    + If a method utilizes this Event as its parameter, the method will + receive every child event of this class.
    +
    + world contains the world this event is occurring in.
    + rand contains an instance of random that can be used in this event.
    + worldX contains the x-coordinate of the block position currently being populated with ores.
    + worldZ contains the z-coordinate of the block position currently being populated with ores.
    +
    + All children of this event are fired on the MinecraftForge#ORE_GEN_BUS.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Nested Class Summary

      + + + + + + + + + + + + + + + + + + +
      Nested Classes 
      Modifier and TypeClass and Description
      static class OreGenEvent.GenerateMinable +
      GenerateMinable is fired when a mineable block is generated in a chunk.
      + This event is fired just after ore generation in + BiomeDecorator#generateOres().
      +
      + OreGenEvent.GenerateMinable.type contains the enum value for the Ore attempting to be generated.
      + OreGenEvent.GenerateMinable.generator contains the WorldGenerator generating this ore.
      +
      static class OreGenEvent.Post +
      OreGenEvent.Post is fired just after a chunk is populated with ores.
      + This event is fired just after ore generation in + BiomeDecorator#generateOres().
      +
      + This event is not Cancelable.
      +
      + This event does not have a result.
      +
      static class OreGenEvent.Pre +
      OreGenEvent.Pre is fired just before a chunk is populated with ores.
      + This event is fired just before ore generation in + BiomeDecorator#generateOres().
      +
      + This event is not Cancelable.
      +
      + This event does not have a result.
      +
      + +
    • +
    + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      java.util.Randomrand 
      Worldworld 
      intworldX 
      intworldZ 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      OreGenEvent(World world, + java.util.Random rand, + int worldX, + int worldZ) 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        world

        +
        public final World world
        +
      • +
      + + + +
        +
      • +

        rand

        +
        public final java.util.Random rand
        +
      • +
      + + + +
        +
      • +

        worldX

        +
        public final int worldX
        +
      • +
      + + + +
        +
      • +

        worldZ

        +
        public final int worldZ
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        OreGenEvent

        +
        public OreGenEvent(World world,
        +           java.util.Random rand,
        +           int worldX,
        +           int worldZ)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + -- cgit v1.2.3