Package-level declarations

Types

Link copied to clipboard
@ConfigSerializable
data class BossBarDesc(val progress: Float = 1.0f, val color: BossBar.Color = BossBar.Color.WHITE, val overlay: BossBar.Overlay = BossBar.Overlay.PROGRESS)

Descriptor from which a BossBar can be created.

Link copied to clipboard
@ConfigSerializable
data class ItemDesc(val type: ItemType, val modelData: Int = 0, val damage: Int = 0, val isUnbreakable: Boolean = false)

Descriptor for an item stack.

Link copied to clipboard
interface ItemType

Describes the base type of item created by an ItemDesc.

Link copied to clipboard
@ConfigSerializable
data class ParticleDesc(val type: ParticleType, val count: Int = 0, val size: DVec3 = DVec3(0.0), val speed: Double = 0.0)

Descriptor for a spawnable particle.

Link copied to clipboard
interface ParticleType

Describes the base type of particle created by a ParticleDesc.