├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── tag.yml ├── .gitignore ├── LICENSE ├── NEAVersionless └── src │ └── main │ └── java │ └── dev │ └── tr7zw │ └── notenoughanimations │ └── versionless │ ├── NEABaseMod.java │ ├── RotationLock.java │ ├── animations │ ├── BodyPart.java │ ├── BowAnimation.java │ ├── DataHolder.java │ ├── HoldUpModes.java │ └── HoldUpTarget.java │ └── config │ ├── Config.java │ └── ConfigUpgrader.java ├── README.md ├── gradle-compose.yml ├── gradle └── gradle-compose.jar ├── gradlecw ├── gradlecw.bat ├── settings.json ├── src ├── main │ ├── java │ │ └── dev │ │ │ └── tr7zw │ │ │ └── notenoughanimations │ │ │ ├── NEABootstrap.java │ │ │ ├── NEAModMenu.java │ │ │ ├── NEAnimationsLoader.java │ │ │ ├── NEAnimationsMod.java │ │ │ ├── access │ │ │ ├── ExtendedItemStackRenderState.java │ │ │ ├── ExtendedLivingRenderState.java │ │ │ └── PlayerData.java │ │ │ ├── animations │ │ │ ├── fullbody │ │ │ │ ├── ActionRotationLockAnimation.java │ │ │ │ ├── BurningAnimation.java │ │ │ │ ├── CrawlingAnimation.java │ │ │ │ ├── FallingAnimation.java │ │ │ │ ├── FreezingAnimation.java │ │ │ │ ├── HorseAnimation.java │ │ │ │ ├── LadderAnimation.java │ │ │ │ └── PassengerAnimation.java │ │ │ ├── hands │ │ │ │ ├── BoatAnimation.java │ │ │ │ ├── ClampCrossbowAnimations.java │ │ │ │ ├── CustomBowAnimation.java │ │ │ │ ├── EatDrinkAnimation.java │ │ │ │ ├── HugAnimation.java │ │ │ │ ├── ItemSwapAnimation.java │ │ │ │ ├── LookAtItemAnimation.java │ │ │ │ ├── MapHoldingAnimation.java │ │ │ │ ├── NarutoRunningAnimation.java │ │ │ │ ├── PetAnimation.java │ │ │ │ └── VanillaProjectileWeaponAnimation.java │ │ │ └── vanilla │ │ │ │ ├── DeathAnimation.java │ │ │ │ ├── ElytraAnimation.java │ │ │ │ ├── RiptideAnimation.java │ │ │ │ ├── SleepAnimation.java │ │ │ │ ├── SwimAnimation.java │ │ │ │ ├── VanillaShieldAnimation.java │ │ │ │ ├── VanillaSingleHandedAnimation.java │ │ │ │ └── VanillaTwoHandedAnimation.java │ │ │ ├── api │ │ │ ├── BasicAnimation.java │ │ │ ├── NotEnoughAnimationsApi.java │ │ │ └── PoseOverwrite.java │ │ │ ├── config │ │ │ └── ConfigScreenProvider.java │ │ │ ├── logic │ │ │ ├── AnimationProvider.java │ │ │ ├── HeldItemHandler.java │ │ │ └── PlayerTransformer.java │ │ │ ├── mixins │ │ │ ├── ClientLevelMixin.java │ │ │ ├── ItemInHandLayerMixin.java │ │ │ ├── ItemInHandRendererMixin.java │ │ │ ├── ItemStackRenderStateMixin.java │ │ │ ├── LevelRendererMixin.java │ │ │ ├── LivingEntityMixin.java │ │ │ ├── LivingEntityRendererMixin.java │ │ │ ├── LivingRenderStateMixin.java │ │ │ ├── PlayerEntityMixin.java │ │ │ ├── PlayerEntityModelMixin.java │ │ │ ├── PlayerModelAccessor.java │ │ │ └── PlayerRendererMixin.java │ │ │ ├── renderlayer │ │ │ └── SwordRenderLayer.java │ │ │ └── util │ │ │ ├── AnimationUtil.java │ │ │ ├── MapRenderer.java │ │ │ ├── NMSWrapper.java │ │ │ └── RenderStateHolder.java │ └── resources │ │ ├── assets │ │ └── notenoughanimations │ │ │ ├── icon.png │ │ │ ├── lang │ │ │ ├── de_at.json │ │ │ ├── de_ch.json │ │ │ ├── de_de.json │ │ │ ├── en_us.json │ │ │ ├── fr_fr.json │ │ │ ├── pt_br.json │ │ │ ├── pt_pt.json │ │ │ ├── ru_ru.json │ │ │ ├── sv_se.json │ │ │ ├── tr_tr.json │ │ │ ├── uk_ua.json │ │ │ ├── zh_cn.json │ │ │ └── zh_tw.json │ │ │ ├── recipe_book.png │ │ │ └── textures │ │ │ └── recipe_book.png │ │ ├── icon.png │ │ └── notenoughanimations.mixins.json └── test │ └── java │ └── dev │ └── tr7zw │ └── tests │ ├── MixinTests.java │ ├── TestMod.java │ └── TestUtil.java └── versions └── mainProject /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | ko_fi: tr7zw -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/.github/workflows/tag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/LICENSE -------------------------------------------------------------------------------- /NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/NEABaseMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/NEABaseMod.java -------------------------------------------------------------------------------- /NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/RotationLock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/RotationLock.java -------------------------------------------------------------------------------- /NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/animations/BodyPart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/animations/BodyPart.java -------------------------------------------------------------------------------- /NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/animations/BowAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/animations/BowAnimation.java -------------------------------------------------------------------------------- /NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/animations/DataHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/animations/DataHolder.java -------------------------------------------------------------------------------- /NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/animations/HoldUpModes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/animations/HoldUpModes.java -------------------------------------------------------------------------------- /NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/animations/HoldUpTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/animations/HoldUpTarget.java -------------------------------------------------------------------------------- /NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/config/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/config/Config.java -------------------------------------------------------------------------------- /NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/config/ConfigUpgrader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/NEAVersionless/src/main/java/dev/tr7zw/notenoughanimations/versionless/config/ConfigUpgrader.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/README.md -------------------------------------------------------------------------------- /gradle-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/gradle-compose.yml -------------------------------------------------------------------------------- /gradle/gradle-compose.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/gradle/gradle-compose.jar -------------------------------------------------------------------------------- /gradlecw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/gradlecw -------------------------------------------------------------------------------- /gradlecw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/gradlecw.bat -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/settings.json -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/NEABootstrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/NEABootstrap.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/NEAModMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/NEAModMenu.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/NEAnimationsLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/NEAnimationsLoader.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/NEAnimationsMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/NEAnimationsMod.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/access/ExtendedItemStackRenderState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/access/ExtendedItemStackRenderState.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/access/ExtendedLivingRenderState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/access/ExtendedLivingRenderState.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/access/PlayerData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/access/PlayerData.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/ActionRotationLockAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/ActionRotationLockAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/BurningAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/BurningAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/CrawlingAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/CrawlingAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/FallingAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/FallingAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/FreezingAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/FreezingAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/HorseAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/HorseAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/LadderAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/LadderAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/PassengerAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/fullbody/PassengerAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/hands/BoatAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/hands/BoatAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/hands/ClampCrossbowAnimations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/hands/ClampCrossbowAnimations.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/hands/CustomBowAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/hands/CustomBowAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/hands/EatDrinkAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/hands/EatDrinkAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/hands/HugAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/hands/HugAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/hands/ItemSwapAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/hands/ItemSwapAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/hands/LookAtItemAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/hands/LookAtItemAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/hands/MapHoldingAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/hands/MapHoldingAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/hands/NarutoRunningAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/hands/NarutoRunningAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/hands/PetAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/hands/PetAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/hands/VanillaProjectileWeaponAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/hands/VanillaProjectileWeaponAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/DeathAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/DeathAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/ElytraAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/ElytraAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/RiptideAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/RiptideAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/SleepAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/SleepAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/SwimAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/SwimAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/VanillaShieldAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/VanillaShieldAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/VanillaSingleHandedAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/VanillaSingleHandedAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/VanillaTwoHandedAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/animations/vanilla/VanillaTwoHandedAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/api/BasicAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/api/BasicAnimation.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/api/NotEnoughAnimationsApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/api/NotEnoughAnimationsApi.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/api/PoseOverwrite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/api/PoseOverwrite.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/config/ConfigScreenProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/config/ConfigScreenProvider.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/logic/AnimationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/logic/AnimationProvider.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/logic/HeldItemHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/logic/HeldItemHandler.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/logic/PlayerTransformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/logic/PlayerTransformer.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/mixins/ClientLevelMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/mixins/ClientLevelMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/mixins/ItemInHandLayerMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/mixins/ItemInHandLayerMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/mixins/ItemInHandRendererMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/mixins/ItemInHandRendererMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/mixins/ItemStackRenderStateMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/mixins/ItemStackRenderStateMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/mixins/LevelRendererMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/mixins/LevelRendererMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/mixins/LivingEntityMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/mixins/LivingEntityMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/mixins/LivingEntityRendererMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/mixins/LivingEntityRendererMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/mixins/LivingRenderStateMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/mixins/LivingRenderStateMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/mixins/PlayerEntityMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/mixins/PlayerEntityMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/mixins/PlayerEntityModelMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/mixins/PlayerEntityModelMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/mixins/PlayerModelAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/mixins/PlayerModelAccessor.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/mixins/PlayerRendererMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/mixins/PlayerRendererMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/renderlayer/SwordRenderLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/renderlayer/SwordRenderLayer.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/util/AnimationUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/util/AnimationUtil.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/util/MapRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/util/MapRenderer.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/util/NMSWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/util/NMSWrapper.java -------------------------------------------------------------------------------- /src/main/java/dev/tr7zw/notenoughanimations/util/RenderStateHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/java/dev/tr7zw/notenoughanimations/util/RenderStateHolder.java -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/lang/de_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/lang/de_at.json -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/lang/de_ch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/lang/de_ch.json -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/lang/de_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/lang/de_de.json -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/lang/fr_fr.json -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/lang/pt_br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/lang/pt_br.json -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/lang/pt_pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/lang/pt_pt.json -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/lang/ru_ru.json -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/lang/sv_se.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/lang/sv_se.json -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/lang/tr_tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/lang/tr_tr.json -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/lang/uk_ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/lang/uk_ua.json -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/lang/zh_cn.json -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/lang/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/lang/zh_tw.json -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/recipe_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/recipe_book.png -------------------------------------------------------------------------------- /src/main/resources/assets/notenoughanimations/textures/recipe_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/assets/notenoughanimations/textures/recipe_book.png -------------------------------------------------------------------------------- /src/main/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/icon.png -------------------------------------------------------------------------------- /src/main/resources/notenoughanimations.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/main/resources/notenoughanimations.mixins.json -------------------------------------------------------------------------------- /src/test/java/dev/tr7zw/tests/MixinTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/test/java/dev/tr7zw/tests/MixinTests.java -------------------------------------------------------------------------------- /src/test/java/dev/tr7zw/tests/TestMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/test/java/dev/tr7zw/tests/TestMod.java -------------------------------------------------------------------------------- /src/test/java/dev/tr7zw/tests/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr7zw/NotEnoughAnimations/HEAD/src/test/java/dev/tr7zw/tests/TestUtil.java -------------------------------------------------------------------------------- /versions/mainProject: -------------------------------------------------------------------------------- 1 | 1.21.10-fabric --------------------------------------------------------------------------------