Package | Description |
---|---|
net.minecraftforge.fml.common | |
net.minecraftforge.fml.common.event |
Modifier and Type | Field and Description |
---|---|
private com.google.common.collect.ListMultimap<java.lang.Class<? extends FMLEvent>,java.lang.reflect.Method> |
FMLModContainer.eventMethods |
Modifier and Type | Method and Description |
---|---|
void |
FMLModContainer.handleModStateEvent(FMLEvent event) |
void |
LoadController.propogateStateMessage(FMLEvent stateEvent) |
private void |
LoadController.sendEventToModContainer(FMLEvent stateEvent,
ModContainer mc) |
Modifier and Type | Class and Description |
---|---|
class |
FMLConstructionEvent
An internal FML event used to signal the construction of mods.
|
class |
FMLFingerprintViolationEvent
A special event used when the
Mod.certificateFingerprint() doesn't match the certificate loaded from the JAR
file. |
class |
FMLInitializationEvent
Called after
FMLPreInitializationEvent and before FMLPostInitializationEvent during mod
startup. |
static class |
FMLInterModComms.IMCEvent
Subscribe to this event to receive your messages (they are sent between
FMLInitializationEvent and FMLPostInitializationEvent ) |
class |
FMLLoadCompleteEvent
This is a mostly internal event fired to mod containers that indicates that loading is complete.
|
class |
FMLModDisabledEvent |
class |
FMLModIdMappingEvent
Called whenever the ID mapping might have changed.
|
class |
FMLPostInitializationEvent
Called after
FMLInitializationEvent has been dispatched on every mod. |
class |
FMLPreInitializationEvent
Called before
FMLInitializationEvent during mod startup. |
class |
FMLServerAboutToStartEvent
Called before the server begins loading anything.
|
class |
FMLServerStartedEvent
Called after
FMLServerStartingEvent when the server is available and ready to play. |
class |
FMLServerStartingEvent
Called after
FMLServerAboutToStartEvent and before FMLServerStartedEvent . |
class |
FMLServerStoppedEvent
Called after
FMLServerStoppingEvent when the server has completely shut down. |
class |
FMLServerStoppingEvent
Called when the server begins an orderly shutdown, before
FMLServerStoppedEvent . |
class |
FMLStateEvent
The parent of all mod-state changing events
|