-
Notifications
You must be signed in to change notification settings - Fork 5
Home
Welcome Mod Dev! Lets get your Fzzy Config system up and running. Guides in this wiki will cover two basic cases: Minimal Effort and Above and Beyond. Feel free to take whatever route suits your needs!
Creating a new mod and using Fzzy Config from the start? Thank you for choosing Fzzy Config! Take a trip to the New Configs guide for the step-by-step proceses.
Making the leap from another config lib to this one? Welcome aboard! Check out the Existing Configs guide for the steps you'll need to integrate your existing system into Fzzy Configs.
Add the following to your build script to depend on Fzzy Config:
// Kotlin
maven {
name = "Modrinth"
url = uri("https://api.modrinth.com/maven")
content {
includeGroup("maven.modrinth")
}
}
// java
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
content {
includeGroup "maven.modrinth"
}
}
// kotlin
val fzzyConfigVersion: String by project //define this in your gradle.properties file
modImplementation("maven.modrinth:fzzy-config:$fzzyConfigVersion")
// java
modImplementation "maven.modrinth:fzzy-config:${project.fzzyConfigVersion}"
Check out the projects API documentation for detailed overviews of all classes, methods, and so on.
Stuck? Drop a line in my Discord server and I will help you out.