Transform Your Minecraft Text Workflow with Ekho
Fabric modding opens up new possibilities for development, and using Kotlin makes this process even more exciting. However, even in this modern environment, the excessive complexity from Java persists, especially when working with the Text system - Minecraft's primary mechanism for managing all text in the game. Complex text structures create real challenges for developers. Ekho solves this exact problem by utilizing the power of Kotlin's Domain-Specific Language (DSL) to simplify text creation. The mod's name is inspired by the ancient Greek nymph Echo, the deity of echoes.
Getting Started
To master Ekho, we recommend studying the basics of working with the library. They will help you understand its functioning principles and application methods. YouTube videos on the topic will provide additional visual guidance.
Adding to Your Project
repositories {
maven {
name = "Modrinth"
url = uri("https://api.modrinth.com/maven")
}
}
dependencies {
// Ekho
modImplementation("maven.modrinth:ekho:0.3.2")
include("maven.modrinth:ekho:0.3.2")
}