DisplayInfo
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.advancement.DisplayInfo;
Members
Getter
Gets the background of the display info, or null if it is not set.script.zs
// DisplayInfo.background as ResourceLocationmyDisplayInfo.background
Return Type:
ResourceLocation
setLocation(x as float, y as float)
Sets the location of the display info.script.zs
// DisplayInfo.setLocation(x as float, y as float);myDisplayInfo.setLocation(myFloat, myFloat);
Parameters:
x: float
Type: float
- The x coordinate of the display info. y: float
Type: float
- The y coordinate of the display info. Getter
Gets whether the advancement should be displayed in chat when earned.script.zs
// DisplayInfo.shouldAnnounceChat as boolmyDisplayInfo.shouldAnnounceChat
Return Type:
bool
Getter
Gets whether the toast should be shown for the display info.script.zs
// DisplayInfo.shouldShowToast as boolmyDisplayInfo.shouldShowToast
Return Type:
bool
Getter
Gets the type of the display info.script.zs
// DisplayInfo.type as AdvancementTypemyDisplayInfo.type
Return Type:
AdvancementType
Getter
Gets the x coordinate of the display info.script.zs
// DisplayInfo.x as floatmyDisplayInfo.x
Return Type:
float
Getter
Gets the y coordinate of the display info.script.zs
// DisplayInfo.y as floatmyDisplayInfo.y
Return Type:
float