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.

script.zs
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 ResourceLocation
myDisplayInfo.background

Return Type: ResourceLocation

Getter
Gets the description of the display info.
script.zs
// DisplayInfo.description as Component
myDisplayInfo.description

Return Type: Component

Getter
Gets the icon of the display info.
script.zs
// DisplayInfo.icon as ItemStack
myDisplayInfo.icon

Return Type: ItemStack

Getter
Gets whether the advancement should be hidden.
script.zs
// DisplayInfo.isHidden as bool
myDisplayInfo.isHidden

Return Type: bool

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 Type: float - The x coordinate of the display info.
y 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 bool
myDisplayInfo.shouldAnnounceChat

Return Type: bool

Getter
Gets whether the toast should be shown for the display info.
script.zs
// DisplayInfo.shouldShowToast as bool
myDisplayInfo.shouldShowToast

Return Type: bool

Getter
Gets the title of the display info.
script.zs
// DisplayInfo.title as Component
myDisplayInfo.title

Return Type: Component

Getter
Gets the type of the display info.
script.zs
// DisplayInfo.type as AdvancementType
myDisplayInfo.type

Return Type: AdvancementType

Getter
Gets the x coordinate of the display info.
script.zs
// DisplayInfo.x as float
myDisplayInfo.x

Return Type: float

Getter
Gets the y coordinate of the display info.
script.zs
// DisplayInfo.y as float
myDisplayInfo.y

Return Type: float