ResourceLocation
Link to resourcelocation
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.resource.ResourceLocation;
Implemented Interfaces
Link to implemented-interfaces
ResourceLocation implements the following interfaces. That means all methods defined in these interfaces are also available in ResourceLocation
- Comparable<ResourceLocation>
Constructors
Link to constructors
ZenScript Copynew ResourceLocation(namespace as string, path as string) as ResourceLocation
Parameter | Type | Description |
---|---|---|
Parameter namespace | Type string | Description Usually a ModId |
Parameter path | Type string | Description May only contain lower-cased alphanumeric values, as well as / and _ |
Casters
Link to casters
Result Type | 암묵적 |
---|---|
Result Type IData | 암묵적 true |
Result Type string | 암묵적 true |
Methods
Link to methods
Name: asData
Return Type: IData
ZenScript Copy// ResourceLocation.asData() as IData
myResourceLocation.asData();
Name: compareTo
Return Type: int
ZenScript CopyResourceLocation.compareTo(other as ResourceLocation) as int
Parameter | Type |
---|---|
Parameter other | Type ResourceLocation |
Name: equals
Return Type: boolean
ZenScript CopyResourceLocation.equals(other as Object) as boolean
Parameter | Type |
---|---|
Parameter other | Type Object |
Name: getNamespace
Return Type: string
ZenScript Copy// ResourceLocation.getNamespace() as string
myResourceLocation.getNamespace();
Name: getPath
Return Type: string
ZenScript Copy// ResourceLocation.getPath() as string
myResourceLocation.getPath();
Name: hashCode
Return Type: int
ZenScript Copy// ResourceLocation.hashCode() as int
myResourceLocation.hashCode();
Name: toString
Return Type: string
ZenScript Copy// ResourceLocation.toString() as string
myResourceLocation.toString();
Properties
Link to properties
이름 | Type | Has Getter | Has Setter |
---|---|---|---|
이름 commandString | Type string | Has Getter true | Has Setter false |
이름 namespace | Type string | Has Getter true | Has Setter false |
이름 path | Type string | Has Getter true | Has Setter false |