CustomData
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.item.component.CustomData;
Operators
in(key as string) as bool
Checks if the CustomData contains the given key.script.zs
// ((key as string) in CustomData) as boolmyString in myCustomData
Parameters:
key: string
Type: string
- The key to check for.
Return Type:
bool
Members
contains(key as string) as bool
Checks if the CustomData contains the given key.script.zs
Returns: Whether the CustomData contains the given key.
// CustomData.contains(key as string) as bool;myCustomData.contains(myString);
Parameters:
key: string
Type: string
- The key to check for.
Return Type:
bool
Getter
Gets the copy of the tag of the CustomData.script.zs
// CustomData.copyTag as CompoundTagmyCustomData.copyTag
Return Type:
CompoundTag
Getter
Checks if the CustomData is empty.script.zs
// CustomData.isEmpty as boolmyCustomData.isEmpty
Return Type:
bool
matchedBy(tag as MapData) as bool
static of(tag as MapData) as CustomData
Creates a new CustomData with the given data.script.zs
Returns: The new CustomData.
CustomData.of(myMapData);
Return Type:
CustomData
Getter
Gets the size of the CustomData.script.zs
// CustomData.size as intmyCustomData.size
Return Type:
int
update(updater as function(t as MapData) as void) as CustomData
Updates the CustomData with the given updater.script.zs
Returns: The updated CustomData.
myCustomData.update(myConsumer);
Parameters:
Return Type:
CustomData