-
Notifications
You must be signed in to change notification settings - Fork 5
Legacy Getting Started
Zigy edited this page Jul 21, 2025
·
4 revisions
Pull requests that bring bug fixes and features from newer versions to old ones will be merged.
Note
The Player Animator mod is the only required dependancy. (Which you can include with your mod)
All other dependancies are either included with the mod or optional.
Note
For 1.20.1 replace neoforge with forge.
Latest version of the api per version:
-
1.20.4: 2.1.2 -
1.20.1: 2.1.5
Maven Repository
maven {
name = "RedlanceMinecraft"
url = "https://repo.redlance.org/public"
}
NeoGradle
dependencies {
implementation ("com.zigythebird.playeranimatorapi:playeranimatorapi-neoforge-$project.minecraft_version:$project.playeranimatorapi_version", {
exclude group: "software.bernie.geckolib"
exclude group: "com.github.Virtuoel"
exclude group: "mod.azure.azurelib"
exclude group: "com.eliotlash.mclib"
exclude group: "maven.modrinth"
})
}
ForgeGradle (1.20.1 only)
dependencies {
implementation fg.deobf("com.zigythebird.playeranimatorapi:playeranimatorapi-forge-$project.minecraft_version:$project.playeranimatorapi_version", {
exclude group: "com.github.Virtuoel"
exclude group: "mod.azure.azurelib"
exclude group: "com.eliotlash.mclib"
exclude group: "maven.modrinth"
})
}
Architectury Loom (Common)
dependencies {
modImplementation ("com.zigythebird.playeranimatorapi:playeranimatorapi-common-$rootProject.minecraft_version:$rootProject.playeranimatorapi_version", {
exclude group: "software.bernie.geckolib"
exclude group: "com.github.Virtuoel"
exclude group: "mod.azure.azurelib"
exclude group: "com.eliotlash.mclib"
exclude group: "maven.modrinth"
})
}
Fabric Loom
dependencies {
modImplementation ("com.zigythebird.playeranimatorapi:playeranimatorapi-fabric-$project.minecraft_version:$project.playeranimatorapi_version", {
exclude group: "software.bernie.geckolib"
exclude group: "com.github.Virtuoel"
exclude group: "mod.azure.azurelib"
exclude group: "com.eliotlash.mclib"
exclude group: "net.fabricmc.fabric-api"
exclude group: "maven.modrinth"
})
}
Architectury Loom (NeoForge)
dependencies {
modImplementation ("com.zigythebird.playeranimatorapi:playeranimatorapi-neoforge-$rootProject.minecraft_version:$rootProject.playeranimatorapi_version", {
exclude group: "software.bernie.geckolib"
exclude group: "com.github.Virtuoel"
exclude group: "mod.azure.azurelib"
exclude group: "com.eliotlash.mclib"
exclude group: "maven.modrinth"
})
}