Skip to content

Katton

Hot-reloadable Kotlin scripting for Minecraft Fabric, NeoForge, and Paper

Banner

Katton Live Preview

What can Katton do

Check out those snippets to get a quick glimpse of what Katton's capable of

RegistryRegister Native Blockkotlin
 registerNativeBlock(
    id = "qwq:test_block",
    registerMode = RegisterMode.RELOADABLE
) { props ->
    Block(
        props
            .strength(3.0f, 6.0f)
            .requiresCorrectToolForDrops()
    )
}