Dialog

class Dialog(val player: Player, val title: String? = null, val subtitle: String? = null, val actionbar: String? = null, val onClose: (Player) -> Unit = {}, val onChat: (Player, String) -> Boolean = { _: Player, _: String -> true }) : Listener

Representation of a dialog

Parameters

player

The player that will see the dialog

title

The title of the dialog. If null it will be empty. (Defaults to null)

subtitle

The subtitle of the dialog. If null it will be empty. (Defaults to null)

actionbar

The actionbar of the dialog. If null it will be empty. (Defaults to null)

onClose

The function that will be called when the player closes the dialog. (Defaults to empty function)

Constructors

Link copied to clipboard
fun Dialog(player: Player, title: String? = null, subtitle: String? = null, actionbar: String? = null, onClose: (Player) -> Unit = {}, onChat: (Player, String) -> Boolean = { _: Player, _: String -> true })

Functions

Link copied to clipboard
fun close(sendMessage: Boolean = true): Dialog
Link copied to clipboard
fun onInteract(e: PlayerInteractEvent)
Link copied to clipboard
fun onMessageReceived(event: AsyncPlayerChatEvent)
Link copied to clipboard
fun onMove(e: PlayerMoveEvent)
Link copied to clipboard
fun open(): Dialog

Properties

Link copied to clipboard
val actionbar: String? = null
Link copied to clipboard
var canBeClosed: Boolean = true

Should the player be able to close this dialog?

Link copied to clipboard
var manuallyClosed: Boolean = false

Was this dialog closed manually or programmatically?

Link copied to clipboard
val onChat: (Player, String) -> Boolean
Link copied to clipboard
val onClose: (Player) -> Unit
Link copied to clipboard
val player: Player
Link copied to clipboard
val subtitle: String? = null
Link copied to clipboard
val title: String? = null