0.1.0
Compatibility
Changes
Initial public alpha of Aozai Ink MC.
Aozai Ink MC is a foundation/library mod for handwritten Chinese glyph addons. This first version provides the base systems used by content mods such as Inkscript.
Added
- Handwriting input circles for self-cast and world-anchored glyphs
- ONNX-based Chinese glyph recognition
- Ink stave items with wood, stone, copper, iron, gold, diamond, and netherite tiers
- Short diagonal stave crafting and upgrade recipes
- Stave durability, anvil repair, brush momentum, and breakthrough metadata
InkMarkstate model for addon-side gameplay effects- Official addon API under
com.aozainkmc.api - Official event API under
com.aozainkmc.api.event - Declarative glyph registration with
InkGlyphDefinition - Two-step block target selection for addon mechanics such as seals
- Recognition candidate access through
InkCastContext - Addon integration guide in
docs/addon-integration.md
Notes
- This mod does not add spell gameplay by itself.
- Addon mods must define what recognized glyphs actually do.
- Current runtime support is focused on singleplayer/integrated worlds.
- API may still change during the alpha period.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:40RtOgvc:3FU4wviZ"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:40RtOgvc:3FU4wviZ"
}

