- autorig: landmark detection from vertex cloud (markers JSON override), mixamorig 22-bone skeleton fit, bone-heat weights + nearest-bone rescue - retarget: world-space quaternion delta transfer, hip-height scale compensation, fuzzy/explicit bone mapping (CMU map bundled) - smoke: procedural test humanoid + synthetic BVH -> rig -> retarget -> verify - deploy: push to gitea, pull + smoke on m3ultra and m1ultra Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
16 lines
295 B
Makefile
16 lines
295 B
Makefile
.PHONY: smoke rig anim verify fetch deploy clean
|
|
|
|
# End-to-end self test: procedural mesh -> autorig -> retarget -> verify
|
|
smoke:
|
|
./bin/mirpamo smoke
|
|
|
|
fetch:
|
|
python3 library/fetch.py
|
|
|
|
# Push to gitea, pull + smoke-test on m3ultra and m1ultra
|
|
deploy:
|
|
./scripts/deploy.sh
|
|
|
|
clean:
|
|
rm -rf out/*
|