Ui

open class Ui(title: String, slots: Int, player: Player, automaticallyOpen: Boolean = true) : Listener

Represents a UI

Parameters

title

The title of the UI

slots

The slots of the UI

player

The player that will see the UI

automaticallyOpen

If the UI should be automatically opened. Defaults to true

Constructors

Link copied to clipboard
fun Ui(title: String, slots: Int, player: Player, automaticallyOpen: Boolean = true)

Functions

Link copied to clipboard
open fun close(): Ui

Closes the UI for the player

Link copied to clipboard
fun onBuild(onBuild: UiModel.() -> Unit): Ui

Sets the onBuild variable

Link copied to clipboard
fun onClick(event: InventoryClickEvent)
Link copied to clipboard
fun onClose(event: InventoryCloseEvent)
Link copied to clipboard
fun onDrag(event: InventoryDragEvent)
Link copied to clipboard
fun onQuit(event: PlayerQuitEvent)
Link copied to clipboard
open fun open(): Ui

Opens the UI for the player

Properties

Link copied to clipboard
var canCloseUi: Boolean = true

Should the Ui be able to be closed? Defaults to true

Link copied to clipboard

Should the Ui be closed after the user clicks on an entry? Defaults to true

Link copied to clipboard
var inventory: Inventory? = null

The inventory of the UI

Link copied to clipboard
var onBuild: UiModel.() -> Unit

Executed to build the UI