├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── Common ├── build.gradle └── src │ └── main │ ├── java │ └── einstein │ │ └── improved_animations │ │ ├── ImprovedAnimations.java │ │ ├── access │ │ └── ModelAccess.java │ │ ├── animations │ │ ├── AnimatorDispatcher.java │ │ └── entity │ │ │ ├── LivingEntityPartAnimator.java │ │ │ ├── NPCPartAnimator.java │ │ │ └── PlayerPartAnimator.java │ │ ├── mixin │ │ ├── MixinCapeLayer.java │ │ ├── MixinElytraLayer.java │ │ ├── MixinGameRenderer.java │ │ ├── MixinInventoryScreen.java │ │ ├── MixinLivingEntityRenderer.java │ │ └── models │ │ │ └── MixinPlayerModel.java │ │ └── util │ │ ├── animation │ │ ├── BakedPose.java │ │ ├── Locator.java │ │ └── LocatorRig.java │ │ ├── data │ │ ├── EntityAnimationData.java │ │ ├── LivingEntityAnimatorRegistry.java │ │ ├── TimelineGroupData.java │ │ ├── TimelineGroupDataLoader.java │ │ └── TransformChannel.java │ │ ├── math │ │ └── RotationMatrix.java │ │ └── time │ │ ├── ChannelTimeline.java │ │ ├── Easing.java │ │ ├── Lerper.java │ │ ├── Timeline.java │ │ └── TimerProcessor.java │ ├── maya │ └── scripts │ │ └── maya-locators-to-timelines.py │ └── resources │ ├── assets │ ├── improved_animations │ │ └── timelinegroups │ │ │ └── player │ │ │ ├── attack_axe.json │ │ │ ├── attack_lean.json │ │ │ ├── attack_pickaxe.json │ │ │ ├── attack_place.json │ │ │ ├── attack_punch.json │ │ │ ├── attack_sword.json │ │ │ ├── boat_master.json │ │ │ ├── climb_down.json │ │ │ ├── climb_up.json │ │ │ ├── crawl.json │ │ │ ├── crawl_idle.json │ │ │ ├── crawl_master.json │ │ │ ├── crouch.json │ │ │ ├── death_fall.json │ │ │ ├── death_normal.json │ │ │ ├── elytra_fast.json │ │ │ ├── fall_fast.json │ │ │ ├── fall_impact.json │ │ │ ├── fall_short.json │ │ │ ├── hold_normal_mainhand.json │ │ │ ├── hold_normal_offhand.json │ │ │ ├── hurt_0.json │ │ │ ├── hurt_1.json │ │ │ ├── hurt_2.json │ │ │ ├── hurt_3.json │ │ │ ├── idle_crouch.json │ │ │ ├── idle_crouch_transition.json │ │ │ ├── idle_normal.json │ │ │ ├── look_horizontal.json │ │ │ ├── look_vertical.json │ │ │ ├── minecart_master.json │ │ │ ├── minecart_start.json │ │ │ ├── minecart_wave.json │ │ │ ├── mount_master.json │ │ │ ├── sleep_master.json │ │ │ ├── sleep_start.json │ │ │ ├── sprint_jump.json │ │ │ ├── sprint_normal.json │ │ │ ├── swim_fast.json │ │ │ ├── swim_idle.json │ │ │ ├── swim_idle_backwards.json │ │ │ ├── swim_idle_forward.json │ │ │ ├── swim_idle_up.json │ │ │ ├── swim_master.json │ │ │ ├── test.json │ │ │ ├── test1.json │ │ │ ├── turn_left.json │ │ │ ├── walk_crouch.json │ │ │ ├── walk_exhausted.json │ │ │ ├── walk_jump.json │ │ │ ├── walk_normal.json │ │ │ └── walk_trudge.json │ └── minecraft │ │ └── models │ │ └── item │ │ ├── shield_blocking.json │ │ ├── trident_in_hand.json │ │ └── trident_throwing.json │ ├── banner.png │ ├── improved_animations.accesswidener │ ├── improved_animationsCommon.mixins.json │ ├── logo.png │ ├── pack.mcmeta │ └── pack.png ├── Fabric ├── build.gradle └── src │ └── main │ ├── java │ └── einstein │ │ └── improved_animations │ │ └── core │ │ └── fabric │ │ ├── ImprovedAnimationsClient.java │ │ └── ImprovedAnimationsFabric.java │ └── resources │ └── fabric.mod.json ├── Forge ├── build.gradle └── src │ └── main │ ├── java │ └── einstein │ │ └── improved_animations │ │ └── core │ │ └── forge │ │ └── ImprovedAnimationsForge.java │ └── resources │ └── META-INF │ ├── accesstransformer.cfg │ └── mods.toml ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/.gitignore -------------------------------------------------------------------------------- /Common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/build.gradle -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/ImprovedAnimations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/ImprovedAnimations.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/access/ModelAccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/access/ModelAccess.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/animations/AnimatorDispatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/animations/AnimatorDispatcher.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/animations/entity/LivingEntityPartAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/animations/entity/LivingEntityPartAnimator.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/animations/entity/NPCPartAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/animations/entity/NPCPartAnimator.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/animations/entity/PlayerPartAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/animations/entity/PlayerPartAnimator.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/mixin/MixinCapeLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/mixin/MixinCapeLayer.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/mixin/MixinElytraLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/mixin/MixinElytraLayer.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/mixin/MixinGameRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/mixin/MixinGameRenderer.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/mixin/MixinInventoryScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/mixin/MixinInventoryScreen.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/mixin/MixinLivingEntityRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/mixin/MixinLivingEntityRenderer.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/mixin/models/MixinPlayerModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/mixin/models/MixinPlayerModel.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/animation/BakedPose.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/animation/BakedPose.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/animation/Locator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/animation/Locator.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/animation/LocatorRig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/animation/LocatorRig.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/data/EntityAnimationData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/data/EntityAnimationData.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/data/LivingEntityAnimatorRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/data/LivingEntityAnimatorRegistry.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/data/TimelineGroupData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/data/TimelineGroupData.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/data/TimelineGroupDataLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/data/TimelineGroupDataLoader.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/data/TransformChannel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/data/TransformChannel.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/math/RotationMatrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/math/RotationMatrix.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/time/ChannelTimeline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/time/ChannelTimeline.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/time/Easing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/time/Easing.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/time/Lerper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/time/Lerper.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/time/Timeline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/time/Timeline.java -------------------------------------------------------------------------------- /Common/src/main/java/einstein/improved_animations/util/time/TimerProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/java/einstein/improved_animations/util/time/TimerProcessor.java -------------------------------------------------------------------------------- /Common/src/main/maya/scripts/maya-locators-to-timelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/maya/scripts/maya-locators-to-timelines.py -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/attack_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/attack_axe.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/attack_lean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/attack_lean.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/attack_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/attack_pickaxe.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/attack_place.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/attack_place.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/attack_punch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/attack_punch.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/attack_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/attack_sword.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/boat_master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/boat_master.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/climb_down.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/climb_down.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/climb_up.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/climb_up.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/crawl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/crawl.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/crawl_idle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/crawl_idle.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/crawl_master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/crawl_master.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/crouch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/crouch.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/death_fall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/death_fall.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/death_normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/death_normal.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/elytra_fast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/elytra_fast.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/fall_fast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/fall_fast.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/fall_impact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/fall_impact.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/fall_short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/fall_short.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/hold_normal_mainhand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/hold_normal_mainhand.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/hold_normal_offhand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/hold_normal_offhand.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/hurt_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/hurt_0.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/hurt_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/hurt_1.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/hurt_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/hurt_2.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/hurt_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/hurt_3.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/idle_crouch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/idle_crouch.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/idle_crouch_transition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/idle_crouch_transition.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/idle_normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/idle_normal.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/look_horizontal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/look_horizontal.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/look_vertical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/look_vertical.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/minecart_master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/minecart_master.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/minecart_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/minecart_start.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/minecart_wave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/minecart_wave.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/mount_master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/mount_master.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/sleep_master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/sleep_master.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/sleep_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/sleep_start.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/sprint_jump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/sprint_jump.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/sprint_normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/sprint_normal.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/swim_fast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/swim_fast.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/swim_idle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/swim_idle.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/swim_idle_backwards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/swim_idle_backwards.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/swim_idle_forward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/swim_idle_forward.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/swim_idle_up.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/swim_idle_up.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/swim_master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/swim_master.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/test.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/test1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/test1.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/turn_left.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/turn_left.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/walk_crouch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/walk_crouch.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/walk_exhausted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/walk_exhausted.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/walk_jump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/walk_jump.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/walk_normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/walk_normal.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/improved_animations/timelinegroups/player/walk_trudge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/improved_animations/timelinegroups/player/walk_trudge.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/minecraft/models/item/shield_blocking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/minecraft/models/item/shield_blocking.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/minecraft/models/item/trident_in_hand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/minecraft/models/item/trident_in_hand.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/minecraft/models/item/trident_throwing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/assets/minecraft/models/item/trident_throwing.json -------------------------------------------------------------------------------- /Common/src/main/resources/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/banner.png -------------------------------------------------------------------------------- /Common/src/main/resources/improved_animations.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/improved_animations.accesswidener -------------------------------------------------------------------------------- /Common/src/main/resources/improved_animationsCommon.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/improved_animationsCommon.mixins.json -------------------------------------------------------------------------------- /Common/src/main/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/logo.png -------------------------------------------------------------------------------- /Common/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /Common/src/main/resources/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Common/src/main/resources/pack.png -------------------------------------------------------------------------------- /Fabric/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Fabric/build.gradle -------------------------------------------------------------------------------- /Fabric/src/main/java/einstein/improved_animations/core/fabric/ImprovedAnimationsClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Fabric/src/main/java/einstein/improved_animations/core/fabric/ImprovedAnimationsClient.java -------------------------------------------------------------------------------- /Fabric/src/main/java/einstein/improved_animations/core/fabric/ImprovedAnimationsFabric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Fabric/src/main/java/einstein/improved_animations/core/fabric/ImprovedAnimationsFabric.java -------------------------------------------------------------------------------- /Fabric/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Fabric/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /Forge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Forge/build.gradle -------------------------------------------------------------------------------- /Forge/src/main/java/einstein/improved_animations/core/forge/ImprovedAnimationsForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Forge/src/main/java/einstein/improved_animations/core/forge/ImprovedAnimationsForge.java -------------------------------------------------------------------------------- /Forge/src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Forge/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /Forge/src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/Forge/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectSlenders/Improved-Animations/HEAD/settings.gradle --------------------------------------------------------------------------------