Uses of Interface
net.minecraftforge.fml.event.lifecycle.IModBusEvent
-
-
Uses of IModBusEvent in net.minecraftforge.client.event
Classes in net.minecraftforge.client.event that implement IModBusEvent Modifier and Type Class Description class
ColorHandlerEvent
Use these events to register block/item color handlers at the appropriate time.static class
ColorHandlerEvent.Block
static class
ColorHandlerEvent.Item
class
ModelBakeEvent
Fired when the ModelManager is notified of the resource manager reloading.class
ModelRegistryEvent
Fired when theModelLoader
is ready to register model loadersclass
ParticleFactoryRegisterEvent
Fired when you should callnet.minecraft.client.particle.ParticleManager#registerFactory
.class
TextureStitchEvent
static class
TextureStitchEvent.Post
This event is fired once the texture map has loaded all textures and stitched them together.static class
TextureStitchEvent.Pre
Fired when the TextureMap is told to refresh it's stitched texture. -
Uses of IModBusEvent in net.minecraftforge.client.event.sound
Classes in net.minecraftforge.client.event.sound that implement IModBusEvent Modifier and Type Class Description class
SoundLoadEvent
Raised by the SoundManager.loadSoundSettings, this would be a good place for adding your custom sounds to the SoundPool. -
Uses of IModBusEvent in net.minecraftforge.event
Classes in net.minecraftforge.event that implement IModBusEvent Modifier and Type Class Description class
RegistryEvent<T extends IForgeRegistryEntry<T>>
RegistryEvent supertype.static class
RegistryEvent.MissingMappings<T extends IForgeRegistryEntry<T>>
static class
RegistryEvent.NewRegistry
Register new registries when you receive this event, through theRecipeBuilder
static class
RegistryEvent.Register<T extends IForgeRegistryEntry<T>>
Register your objects for the appropriate registry type when you receive this event. -
Uses of IModBusEvent in net.minecraftforge.event.entity
Classes in net.minecraftforge.event.entity that implement IModBusEvent Modifier and Type Class Description class
EntityAttributeCreationEvent
EntityAttributeCreationEvent.
Use this event to register attributes for your own EntityTypes.class
EntityAttributeModificationEvent
EntityAttributeModificationEvent.
Use this event to add attributes to existing entity types. -
Uses of IModBusEvent in net.minecraftforge.fml
Classes in net.minecraftforge.fml with type parameters of type IModBusEvent Modifier and Type Interface Description static interface
ModLoadingStage.EventGenerator<T extends net.minecraftforge.eventbus.api.Event & IModBusEvent>
Methods in net.minecraftforge.fml with type parameters of type IModBusEvent Modifier and Type Method Description protected <T extends net.minecraftforge.eventbus.api.Event & IModBusEvent>
voidModContainer. acceptEvent(T e)
Accept an arbitrary event for processing by the mod.private <T extends net.minecraftforge.eventbus.api.Event & IModBusEvent>
ModLoadingStage.EventGenerator<T>ModLoadingStage. addCompletableFutureTaskForModDispatch(java.util.concurrent.Executor syncExecutor, java.util.concurrent.Executor parallelExecutor, java.util.List<java.util.concurrent.CompletableFuture<java.util.List<java.lang.Throwable>>> completeableFutures, ModLoadingStage.EventGenerator<T> eventGenerator, java.util.function.BiFunction<ModLoadingStage,java.lang.Throwable,ModLoadingStage> nextState, ModLoadingStage.EventGenerator<T> nextGenerator)
<T extends net.minecraftforge.eventbus.api.Event & IModBusEvent>
java.util.concurrent.CompletableFuture<java.util.List<java.lang.Throwable>>ModLoadingStage. buildTransition(java.util.concurrent.Executor syncExecutor, java.util.concurrent.Executor parallelExecutor)
<T extends net.minecraftforge.eventbus.api.Event & IModBusEvent>
java.util.concurrent.CompletableFuture<java.util.List<java.lang.Throwable>>ModLoadingStage. buildTransition(java.util.concurrent.Executor syncExecutor, java.util.concurrent.Executor parallelExecutor, java.util.function.Function<java.util.concurrent.Executor,java.util.concurrent.CompletableFuture<java.lang.Void>> preSyncTask, java.util.function.Function<java.util.concurrent.Executor,java.util.concurrent.CompletableFuture<java.lang.Void>> postSyncTask)
static <T extends net.minecraftforge.eventbus.api.Event & IModBusEvent>
java.util.concurrent.CompletableFuture<java.lang.Void>ModContainer. buildTransitionHandler(ModContainer target, ModLoadingStage.EventGenerator<T> eventGenerator, java.util.function.BiFunction<ModLoadingStage,java.lang.Throwable,ModLoadingStage> stateChangeHandler, java.util.concurrent.Executor executor)
static <FN extends net.minecraftforge.eventbus.api.Event & IModBusEvent>
ModLoadingStage.EventGenerator<FN>ModLoadingStage.EventGenerator. fromFunction(java.util.function.Function<ModContainer,FN> fn)
(package private) <T extends net.minecraftforge.eventbus.api.Event & IModBusEvent>
java.util.function.Function<java.util.concurrent.Executor,java.util.concurrent.CompletableFuture<java.util.List<java.lang.Throwable>>>ModList. futureVisitor(ModLoadingStage.EventGenerator<T> eventGenerator, java.util.function.BiFunction<ModLoadingStage,java.lang.Throwable,ModLoadingStage> stateChange)
<T extends net.minecraftforge.eventbus.api.Event & IModBusEvent>
voidModLoader. postEvent(T e)
<T extends net.minecraftforge.eventbus.api.Event & IModBusEvent>
voidModLoader. runEventGenerator(java.util.function.Function<ModContainer,T> generator)
-
Uses of IModBusEvent in net.minecraftforge.fml.config
Classes in net.minecraftforge.fml.config that implement IModBusEvent Modifier and Type Class Description static class
ModConfig.Loading
static class
ModConfig.ModConfigEvent
static class
ModConfig.Reloading
-
Uses of IModBusEvent in net.minecraftforge.fml.event.lifecycle
Classes in net.minecraftforge.fml.event.lifecycle that implement IModBusEvent Modifier and Type Class Description class
FMLClientSetupEvent
This is the second of four commonly called events during mod lifecycle startup.class
FMLCommonSetupEvent
This is the first of four commonly called events during mod initialization.class
FMLConstructModEvent
class
FMLDedicatedServerSetupEvent
This is the second of four commonly called events during mod lifecycle startup.class
FMLFingerprintViolationEvent
Deprecated.class
FMLLoadCompleteEvent
This is a mostly internal event fired to mod containers that indicates that loading is complete.class
FMLModIdMappingEvent
Called whenever the ID mapping might have changed.class
GatherDataEvent
class
InterModEnqueueEvent
This is the third of four commonly called events during mod lifecycle startup.class
InterModProcessEvent
This is the fourth of four commonly called events during mod lifecycle startup.class
ModLifecycleEvent
Parent type to all ModLifecycle events.class
ParallelDispatchEvent
-
Uses of IModBusEvent in net.minecraftforge.fml.javafmlmod
Methods in net.minecraftforge.fml.javafmlmod with type parameters of type IModBusEvent Modifier and Type Method Description protected <T extends net.minecraftforge.eventbus.api.Event & IModBusEvent>
voidFMLModContainer. acceptEvent(T e)
-