Progress Item
abstract class ProgressItem @JvmOverloads constructor(material: Material, inverse: Boolean = false) : AbstractItem(source)
An item that counts down (by default) from a maximum durability, symbolising progress.
For example, this might be used in a custom furnace to show how much burn time is left on the current fuel. In this case, you'd want override totalTime and set it to the the total burn time of the fuel (eg: 80 seconds for coal), and then gradually increase progress as the remaining burn time decreased.
Parameters
material
The material to use for the item
inverse
If true, the progress bar will be inverted, meaning that 0.0 is full and 1.0 is empty.