Mobility · Back
Standing roll-down
Standing roll-down is a beginner-level mobility movement targeting the spinal erectors, written in Posecode, a small open-source language that LLMs like ChatGPT, Claude, and Gemini can write to describe human movement as text. Every joint angle below is hard-clamped to a safe range of motion.
▶ Open Standing roll-down in the playground →How to do it
- Roll down3s · ease-in-out Drop the chin and round down one vertebra at a time
- Roll up2.5s · ease-in-out Stack the spine back up to standing
The .posecode source
This is the exact text an LLM writes to produce the animation above: phases and joint angles, not 3D transforms.
posecode stretch "Standing roll-down"
rig humanoid
pose start = standing
step "Roll down" 3s ease-in-out:
spine: flex 45
chest: flex 30
neck: flex 20
shoulders: flex 95
knees: flex 10
ground-lock: feet
cue "Drop the chin and round down one vertebra at a time"
step "Roll up" 2.5s ease-in-out:
spine: flex 0
chest: flex 0
neck: flex 0
shoulders: flex 0
knees: flex 0
ground-lock: feet
cue "Stack the spine back up to standing"
repeat 3