-
Notifications
You must be signed in to change notification settings - Fork 2
Getting Started
Hello there!
This is a very cool mod you can see what it does here.
This mod relies on the Player Animator mod for actually animating the player so you will need to add it to the dependencies as well.
You can find the essentials for animating the player here and here, if you are a beginner then the other wiki pages might cause a lot of confusion.
You can see examples of the features of the mod being used here.
If you ever need any help contact me on discord, my username is zigythebird
.
This relatively ambitious mod is only maintained by one person (me) so if you spot any bugs be sure to make a GitHub issue.
CurseForge: https://www.curseforge.com/minecraft/mc-mods/playeranimatorapi
Modrinth: https://modrinth.com/mod/playeranimatorapi
MC versions with the mod: 1.21, 1.20.4, 1.20.1
Pull requests that bring bug fixes and features from newer versions to old ones will be merged.
Caution
For pre-1.21 versions follow the legacy wiki.
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.
Maven Repository
maven {
name "zigythebirdMods"
url "https://maven.zigythebird.com/mods"
}
gradle.properties
playeranimatorapi_version=2.3.4
NeoGradle
dependencies {
implementation "com.zigythebird.playeranimatorapi:playeranimatorapi-neoforge-$project.minecraft_version:$project.playeranimatorapi_version"
}
Fabric Loom
dependencies {
modImplementation "com.zigythebird.playeranimatorapi:playeranimatorapi-fabric-$project.minecraft_version:$project.playeranimatorapi_version"
}
Architectury Loom (Common)
dependencies {
modImplementation "com.zigythebird.playeranimatorapi:playeranimatorapi-common-$rootProject.minecraft_version:$rootProject.playeranimatorapi_version"
}
Architectury Loom (Fabric)
dependencies {
modImplementation "com.zigythebird.playeranimatorapi:playeranimatorapi-fabric-$rootProject.minecraft_version:$rootProject.playeranimatorapi_version"
}
Architectury Loom (NeoForge)
dependencies {
modImplementation "com.zigythebird.playeranimatorapi:playeranimatorapi-neoforge-$rootProject.minecraft_version:$rootProject.playeranimatorapi_version"
}