ModInfo
Link to modinfo
Contiene informazioni su una mod caricata
Importare la Classe
Link to importare-la-classe
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.mods.ModInfo;
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome blocks | Tipo stdlib.List<MCBlock> | Ha Getter sì | Ha Setter no | Descrizione Finds all blocks registered for that mod. |
Nome displayName | Tipo string | Ha Getter sì | Ha Setter no | Descrizione Gets the display name of the mod |
Nome entitytypes | Tipo stdlib.List<MCEntityType> | Ha Getter sì | Ha Setter no | Descrizione Finds all EntityTypes registered for that mod |
Nome fluids | Tipo stdlib.List<MCFluid> | Ha Getter sì | Ha Setter no | Descrizione Finds all EntityTypes registered for that mod |
Nome items | Tipo stdlib.List<IItemStack> | Ha Getter sì | Ha Setter no | Descrizione Gets all known items from that mod Does not take "sub items" into account! That means, that it will e.g. find an enchanted book, but without tags, and only one! |
Nome modid | Tipo string | Ha Getter sì | Ha Setter no | Descrizione Gets the modid of the mod |
Nome namespace | Tipo string | Ha Getter sì | Ha Setter no | Descrizione Gets the namespace of the mod |
Nome version | Tipo string | Ha Getter sì | Ha Setter no | Descrizione Gets the version of the mod |