Package com.github.syari.spigot.api.inventory

Types

ClickEventAction
Link copied to clipboard
class ClickEventAction
アイテムをクリックした時に処理を実行する。
ClickEventBuilderAction
Link copied to clipboard
typealias ClickEventBuilderAction = ClickEventAction.Builder.() -> Unit

ClickEventAction.Builder.() -> Unit

CustomInventory
Link copied to clipboard
class CustomInventory
インベントリの設定をするクラス
CustomInventoryAction
Link copied to clipboard
typealias CustomInventoryAction = CustomInventory.() -> Unit

CustomInventory.() -> Unit

Functions

inventory
Link copied to clipboard
fun inventory(inventory: Inventory, id: String = inventory.toString()): CustomInventory
Inventory から CustomInventory を生成する。
fun inventory(display: String, line: Int = 3, id: String = display): CustomInventory
チェストタイプの CustomInventory を生成する。
fun inventory(display: String, type: InventoryType, id: String = display): CustomInventory
InventoryType から CustomInventory を生成する。
fun inventory(inventory: Inventory, id: String = inventory.toString(), action: CustomInventory.() -> Unit): CustomInventory
Inventory から CustomInventory を生成する。
fun inventory(display: String, line: Int = 3, id: String = display, action: CustomInventoryAction): CustomInventory
チェストタイプの CustomInventory を生成する。
fun inventory(display: String, type: InventoryType, id: String = display, action: CustomInventoryAction): CustomInventory
InventoryType から CustomInventory を生成する。

Properties

inventoryId
Link copied to clipboard
val UUIDPlayer.inventoryId: String?
プレイヤーが開いているインベントリの識別子を取得する。
inventoryId
Link copied to clipboard
val Player.inventoryId: String?
プレイヤーが開いているインベントリの識別子を取得する。