[HMI] Gous's Hand Poses

⭐ ⭐ (194 endorsements) 📥 301,029 downloads 📌 v1.2.0 📅 11/24/2025
🟡 Updated this year

By Gous · entities

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 12/26/2025 📅 Created: 11/24/2025

🔍 Analysis

  • 👍 0.1% endorsement rate
  • 🏆 #42 of 150 entities mods in this game by downloads

📋 About This Mod

✅ - do things if hand poses pack is on
✅ if isHandPosesActive then
✅ -- example: move item up by 1 unit
✅ M:moveY(context.matrices, 1)

<div align="center"><h1>Gous's Hand Poses</h1> <a href="https://modrinth.com/mod/hold-my-items"> <img src="https://cdn.modrinth.com/data/cached_images/4b2e01bfef3086d00b3e9b184e1db33da315d4d7.png" alt="Requires Hold My Items"> </a> <a href="https://modrinth.com/mod/respackopts"> <img src="https://cdn.modrinth.com/data/cached_images/3f98b51204619f8949d81b30da9e29b23dc16b83.png" alt="Requires Respackopts"> </a><br><br> Just a small addon for the HMI mod, maybe I'll expand it in the future. </div> <br> ## Current Features _(toggleable)_ - Throwing item pose (Resource pack used: (https://modrinth.com/resourcepack/tools-and-utils)) !(https://i.postimg.cc/9Qd172Lw/2025-11-2202-03-18-ezgif-com-video-to-gif-converter.gif) - Offhand planting pose !(https://i.postimg.cc/bwYrPHSb/2025-11-2213-08-45-ezgif-com-video-to-gif-converter(1).gif) - Shearing pose !(https://i.postimg.cc/qvdWjpXC/2025-12-2701-08-30-ezgif-com-video-to-gif-converter.gif) ## For other pack creators I’ve made it so other packs can detect and disable my pack’s features for compatibility. Here’s an example of how to disable features in my pack - you can put it in either `item_addon` or `hand_addon` ```lua global.GHP_disablePlanting = 0.0; global.GHP_disableThrowing = 0.0; global.GHP_disableShearing = 0.0; global.GHP_disableShearingMPA = 0.0; global.GHP_customShearsMPA = 0; global.GHP_leftShearsStart = 0; global.GHP_leftShearsEnd = 29; global.GHP_rightShearsStart = 30; global.GHP_rightShearsEnd = 59; global.GHP_leftShearsRot = 7.5; global.GHP_rightShearsRot = -7.5; global.GHP_isActive = 0.0; global.GHP_prevIsActive = 0.0; local isHandPosesActive = (GHP_prevIsActive ~= GHP_isActive) -- check if hand poses pack is active GHP_disablePlanting = GHP_disablePlanting + 1 -- disable planting GHP_disableThrowing = GHP_disableThrowing + 1 -- disable throwing GHP_disableShearing = GHP_disableShearing + 1 -- disable shearing GHP_disableShearingMPA = GHP_disableShearingMPA + 1 -- disable shears modelpart animation --------------------------------------------- PUT YOUR SCRIPT UNDER HERE v -- EXAMPLE -- do things if hand poses pack is on if isHandPosesActive then -- example: move item up by 1 unit M:moveY(context.matrices, 1) end GHP_customShearsMPA = GHP_customShearsMPA + 1 -- enable custom shears modelpart -- pretty much self explain GHP_leftShearsStart = 0 GHP_leftShearsEnd = 29 GHP_rightShearsStart = 30 GHP_rightShearsEnd = 59 GHP_leftShearsRot = 7.5; GHP_rightShearsRot = -7.5; --------------------------------------------- END OF YOUR SCRIPT ^ -- leave this at the bottom of your script GHP_prevIsActive = GHP_isActive ```

Gous's Hand Poses

Requires Hold My Items Requires Respackopts

Just a small addon for the HMI mod, maybe I'll expand it in the future.

## Current Features _(toggleable)_

- Throwing item pose (Resource pack used: (https://modrinth.com/resourcepack/tools-and-utils))

!(https://i.postimg.cc/9Qd172Lw/2025-11-2202-03-18-ezgif-com-video-to-gif-converter.gif) - Offhand planting pose

!(https://i.postimg.cc/bwYrPHSb/2025-11-2213-08-45-ezgif-com-video-to-gif-converter(1).gif) - Shearing pose

!(https://i.postimg.cc/qvdWjpXC/2025-12-2701-08-30-ezgif-com-video-to-gif-converter.gif)

## For other pack creators I’ve made it so other packs can detect and disable my pack’s features for compatibility. Here’s an example of how to disable features in my pack - you can put it in either `item_addon` or `hand_addon` ```lua global. GHP_disablePlanting = 0. 0; global. GHP_disableThrowing = 0. 0; global. GHP_disableShearing = 0. 0; global. GHP_disableShearingMPA = 0. 0;

global. GHP_customShearsMPA = 0; global. GHP_leftShearsStart = 0; global. GHP_leftShearsEnd = 29; global. GHP_rightShearsStart = 30; global. GHP_rightShearsEnd = 59; global. GHP_leftShearsRot = 7. 5; global. GHP_rightShearsRot = -7. 5;

global. GHP_isActive = 0. 0; global. GHP_prevIsActive = 0. 0; local isHandPosesActive = (GHP_prevIsActive ~= GHP_isActive) -- check if hand poses pack is active

GHP_disablePlanting = GHP_disablePlanting + 1 -- disable planting GHP_disableThrowing = GHP_disableThrowing + 1 -- disable throwing GHP_disableShearing = GHP_disableShearing + 1 -- disable shearing GHP_disableShearingMPA = GHP_disableShearingMPA + 1 -- disable shears modelpart animation

--------------------------------------------- PUT YOUR SCRIPT UNDER HERE v

  • - do things if hand poses pack is on
  • if isHandPosesActive then
  • -- example: move item up by 1 unit
  • M:moveY(context.matrices, 1)
  • end

GHP_customShearsMPA = GHP_customShearsMPA + 1 -- enable custom shears modelpart -- pretty much self explain GHP_leftShearsStart = 0 GHP_leftShearsEnd = 29 GHP_rightShearsStart = 30 GHP_rightShearsEnd = 59 GHP_leftShearsRot = 7. 5; GHP_rightShearsRot = -7. 5;

--------------------------------------------- END OF YOUR SCRIPT ^

  • - leave this at the bottom of your script
  • GHP_prevIsActive = GHP_isActive
  • ```
🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Resource Packs
Author
Gous
Version
1.2.0
Downloads
301,029
Endorsements
194
Category
entities
Created
11/24/2025
Updated
12/26/2025
Game Versions
1.21.9, 1.21.10, 1.21.11
Tags
entities, modded, tweaks

🔧 How to Install Minecraft Resource Packs Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Resource Packs →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Resource Packs commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Resource Packs versions does [HMI] Gous's Hand Poses support?

The author lists 1.21.9, 1.21.10, 1.21.11. Other versions may work but are untested by the author.

What is the latest version of [HMI] Gous's Hand Poses?

Version 1.2.0, published 2025-12-26 with 301,029 downloads recorded at the source.

Keep browsing — more Minecraft Resource Packs mods await

📋 All Minecraft Resource Packs Mods 🏆 Top 25 📂 More entities 👤 More by Gous 🔎 Similar Mods 🌐 Best entities (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods