CTResourceLocation
Link to ctresourcelocation
A resource location object is used for telling minecraft where to find something. It consists of a domain and a path.
Calling/Importing the package
Link to callingimporting-the-package
If you don't want to type out the package's whole name every time you use a static method or if you are encountering any issues with the class in general it might be required for you to import the class:
import mods.contenttweaker.ResourceLocation
ZenMethods
Link to zenmethods
Static methods: Create
Link to static-methods-create
Static methods are those that are called on the package itself, not on any specific object of this instance.
You can use this method to create a new CTResourceLocation instance:
ZenScript Copyvar instance = mods.contenttweaker.ResourceLocation.create("contenttweaker:item/myItem");
ZenGetters
Link to zengetters
ZenGetters are called on an object, not on the package itself
ZenScript Copyprint(myLocation.domain);
ZenGetter | Тип |
---|---|
ZenGetter domain | Тип string |
ZenGetter path | Тип string |