Star 历史趋势
数据来源: GitHub API · 生成自 Stargazers.cn
README.md

Logo

Ponder
Patreon License Discord

Ponder is a library for creating interactive, in-game guides to help players understand content added by your mod. Ponder allows you to craft detailed and engaging tutorials that showcase mod mechanics in a way that makes it easier for players to learn how to use your mod.

Project Setup

Add the Create maven to your repositories block in your build script

repositories {
    maven { url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven/" }
    maven { url = "https://maven.createmod.net" }
}

Add a property in your gradle.properties with the latest ponder version which can be found here, it should look like the following with the x replaced with the version you got from the link:

...
ponder_version = x
...

Then add ponder to your project based on the loader and minecraft version you are using.

MultiLoader

Architectury MultiLoader 1.20.1/1.21.1

dependencies {
    modImplementation("net.createmod.ponder:Ponder-Common-${minecraft_version}:${ponder_version}")
}

Jared's MultiLoader Template 1.20.1/1.21.1

dependencies {
    implementation("net.createmod.ponder:Ponder-Common-${minecraft_version}:${ponder_version}")
}
Fabric

Fabric 1.20.1/1.21.1

dependencies {
    modImplementation("net.createmod.ponder:Ponder-Fabric-${minecraft_version}:${ponder_version}")
}
Forge

Forge 1.20.1 \w ForgeGradle

dependencies {
    implementation(fg.deobf("net.createmod.ponder:Ponder-Forge-${minecraft_version}:${ponder_version}"))
}

Forge 1.20.1 \w ModDevGradle

dependencies {
    modImplementation("net.createmod.ponder:Ponder-Forge-${minecraft_version}:${ponder_version}")
}
NeoForge

NeoForge 1.21.1

dependencies {
    implementation("net.createmod.ponder:Ponder-NeoForge-${minecraft_version}:${ponder_version}")
}

关于 About

No description, website, or topics provided.

语言 Languages

Java99.2%
Kotlin0.8%

提交活跃度 Commit Activity

代码提交热力图
过去 52 周的开发活跃度
33
Total Commits
峰值: 5次/周
Less
More

核心贡献者 Contributors