ModInfo
Link to modinfo
Holds information about a loaded mod
Importing the class
Link to importing-the-class
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;
Properties
Link to properties
이름 | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
이름 blocks | Type stdlib.List<MCBlock> | Has Getter true | Has Setter false | Description Finds all blocks registered for that mod. |
이름 displayName | Type string | Has Getter true | Has Setter false | Description Gets the display name of the mod |
이름 entitytypes | Type stdlib.List<MCEntityType> | Has Getter true | Has Setter false | Description Finds all EntityTypes registered for that mod |
이름 fluids | Type stdlib.List<MCFluid> | Has Getter true | Has Setter false | Description Finds all EntityTypes registered for that mod |
이름 items | Type stdlib.List<IItemStack> | Has Getter true | Has Setter false | Description 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! |
이름 modid | Type string | Has Getter true | Has Setter false | Description Gets the modid of the mod |
이름 namespace | Type string | Has Getter true | Has Setter false | Description Gets the namespace of the mod |
이름 version | Type string | Has Getter true | Has Setter false | Description Gets the version of the mod |