Class Dimension

java.lang.Object
net.mcreator.element.GeneratableElement
net.mcreator.element.types.Dimension
All Implemented Interfaces:
ICommonType, IMCItemProvider, IPOIProvider, ITabContainedElement

  • Field Details

    • biomesInDimension

      public List<BiomeEntry> biomesInDimension
    • worldGenType

      public String worldGenType
    • mainFillerBlock

      public MItemBlock mainFillerBlock
    • fluidBlock

      public MItemBlock fluidBlock
    • airColor

      public Color airColor
    • canRespawnHere

      public boolean canRespawnHere
    • hasFog

      public boolean hasFog
    • isDark

      public boolean isDark
    • doesWaterVaporize

      public boolean doesWaterVaporize
    • sleepResult

      public String sleepResult
    • hasSkyLight

      public boolean hasSkyLight
    • imitateOverworldBehaviour

      public boolean imitateOverworldBehaviour
    • onPlayerEntersDimension

      public Procedure onPlayerEntersDimension
    • onPlayerLeavesDimension

      public Procedure onPlayerLeavesDimension
    • portalFrame

      public MItemBlock portalFrame
    • portalParticles

      public Particle portalParticles
    • portalLuminance

      public int portalLuminance
    • portalSound

      public Sound portalSound
    • enableIgniter

      public boolean enableIgniter
    • igniterName

      public String igniterName
    • igniterRarity

      public String igniterRarity
    • specialInformation

      public StringListProcedure specialInformation
    • igniterTab

      public TabEntry igniterTab
    • texture

      public String texture
    • portalTexture

      public String portalTexture
    • enablePortal

      public boolean enablePortal
    • portalMakeCondition

      public Procedure portalMakeCondition
    • portalUseCondition

      public Procedure portalUseCondition
    • whenPortaTriggerlUsed

      public Procedure whenPortaTriggerlUsed
    • onPortalTickUpdate

      public Procedure onPortalTickUpdate
  • Constructor Details

    • Dimension

      public Dimension(ModElement element)
  • Method Details

    • hasIgniter

      public boolean hasIgniter()
    • getWorldgenBlocks

      public Set<String> getWorldgenBlocks()
    • generateModElementPicture

      public BufferedImage generateModElementPicture()
      Overrides:
      generateModElementPicture in class GeneratableElement
      Returns:
      BufferedImage of mod element preview or null if default mod element icon should be used
    • getCreativeTab

      public TabEntry getCreativeTab()
      Specified by:
      getCreativeTab in interface ITabContainedElement
    • getBaseTypesProvided

      public Collection<BaseType> getBaseTypesProvided()
      Specified by:
      getBaseTypesProvided in interface ICommonType
    • providedMCItems

      public List<MCItem> providedMCItems()
      Description copied from interface: IMCItemProvider
      This method determines what MCItems are provided by this generatable element

      WARNING: Calls to this method are generally not thread safe. Implementations can call MCItem.Custom::new that calls getBlockIconBasedOnName which calls ModElement#getGeneratableElement that is not thread safe

      Specified by:
      providedMCItems in interface IMCItemProvider
      Returns:
      A list of MCItems provided by this generatable element
    • getCreativeTabItems

      public List<MCItem> getCreativeTabItems()
      Description copied from interface: ITabContainedElement
      WARNING: Calls to this method are generally not thread safe. Implementations can call MCItem.Custom::new that calls getBlockIconBasedOnName that calls ModElement#getGeneratableElement which is not thread safe
      Specified by:
      getCreativeTabItems in interface ITabContainedElement
      Returns:
      list of items in the creative tab of this element
    • getIconForMCItem

      public ImageIcon getIconForMCItem(Workspace workspace, String suffix)
      Description copied from interface: IMCItemProvider
      This method determines what icon should be used for a custom MCItem, according to its eventual suffix
      Specified by:
      getIconForMCItem in interface IMCItemProvider
      Parameters:
      workspace - The current workspace
      suffix - The suffix of the given MCItem (for example, "bucket" for fluid buckets). If this MCItem has no suffix, this will be the empty string.
      Returns:
      An ImageIcon to use for the given MCItem, or null to use the element preview image.
    • poiBlocks

      public List<MItemBlock> poiBlocks()
      Description copied from interface: IPOIProvider
      This method determines what POI blocks as MItemBlock list are provided by this generatable element
      Specified by:
      poiBlocks in interface IPOIProvider
      Returns:
      A list of MItemBlock that are POI provided by this generatable element