arjun988/blender-skills

rigging

Production rigging in Blender with armatures, IK/FK, constraints, weight painting, mechanical rigs, facial rigs, and drivers.

View source
Original skill document

Rendered from the source repository. Headings, examples, code, tables, links, and referenced images are preserved.

Rigging

Functional rigs supporting intended motion. Clean deformation. Engine-compatible bone hierarchies.

When to Use

  • Character/creature deformation rigs
  • Mechanical constraint rigs
  • Facial expression rigs
  • Prop rigs (doors, vehicles, weapons)
  • Before any animation work

Workflow

Skeleton Design → Bone Placement → Hierarchy → Constraints/IK
    → Weight Painting → Deformation Test → Export Prep

Armature Naming

Prefix: ARM_[AssetName] Bones: [side]_[region]_[name] — e.g., L_arm_upper, spine_01, jaw

Bone Hierarchy

ARM_Character
├── root
├── spine_01 → spine_02 → spine_03
│   ├── L_clavicle → L_arm_upper → L_arm_lower → L_hand
│   └── R_clavicle → R_arm_upper → R_arm_lower → R_hand
├── L_leg_upper → L_leg_lower → L_foot → L_toe
└── R_leg_upper → R_leg_lower → R_foot → R_toe

IK vs FK

Use IKUse FK
Legs (ground contact)Spine (flexible arc)
Arms (hand placement)Shoulder overlap
Feet plantingFinger detail
Mechanical reachWhip/tail motion

Standard: IK legs, FK spine; switchable arms for game characters.

Constraints

ConstraintUse
IKLimb positioning
Copy RotationMechanical sync
Limit RotationJoint ranges
Stretch ToTentacles, pistons
Child OfWeapon attach/detach
ShrinkwrapGround contact (use carefully)

Weight Painting

1. Automatic weights as starting point only
2. Clean weights: normalize per vertex (max 4 influences)
3. Smooth problematic areas (shoulders, hips)
4. Test extreme poses: T-pose, arms up, crouch, jaw open
5. Gradient weights at joints — no hard 1.0/0.0 at bend center

Mechanical Rigs

  • Empty objects as control handles
  • Constraints instead of weight painting
  • Hinge limits match real joint ranges
  • Parent hierarchy mirrors mechanical assembly

Facial Rigs

ApproachUse Case
Bone-basedGame characters
Shape keysCinematics, dialog
HybridHero game characters

Minimum game facial: jaw open, blink L/R, brow up/down.

Drivers

  • Gear rotation sync
  • Auto eyelid blink
  • Weapon reload mechanism
  • Procedural antenna/wire motion

MCP Integration

  1. Create armature via MCP
  2. Parent mesh with automatic weights via MCP
  3. Query bone count and hierarchy
  4. Validate weight groups via MCP if supported
  5. Export armature with mesh via export-pipeline

Deformation Test Poses

  • T-pose / A-pose (bind pose)
  • Arms fully raised
  • Deep crouch
  • Neck rotation extremes
  • Jaw wide open (characters)

Constraints

MUST DO

  • Rig after retopology complete
  • Name bones consistently
  • Limit bone influences to 4 per vertex (game engines)
  • Test deformation at extremes before animation
  • Document control scheme for animators

MUST NOT DO

  • Auto weights without cleanup (hero assets)
  • Scale bones in bind pose
  • Rig before topology validated
  • Skip IK pole targets on limbs
  • Mix multiple root bones without documentation

Reference Guide

TopicReferenceLoad When
Humanoid rigreferences/humanoid-rig.mdCharacters
Mechanical rigreferences/mechanical-rig.mdProps, vehicles
from this repository

More skills

All skills