Bridge-C evidence spike: unitypackage extraction, rest-pose recon, garment transplant onto the Quaternius rig (Data Transfer POLYINTERP_NEAREST), 11-body batch fit, Godot QA scenes. Technical PASS; route nonetheless REJECTED by product call (cost, baked body-segment modularity, style) — full trail on T-1089. Salvage: source-agnostic transplant/batch-fit scripts (the G1-family pipeline for any donor mesh) and the T-1090 discovery (5 body types misrender bare). Extracted vendor payload (spikes/**/raw/) now gitignored. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
12 lines
364 B
Python
12 lines
364 B
Python
"""Dump vertex-group names of every mesh in an FBX."""
|
|
import sys
|
|
|
|
import bpy
|
|
|
|
fbx_path = sys.argv[sys.argv.index("--") + 1]
|
|
bpy.ops.wm.read_factory_settings(use_empty=True)
|
|
bpy.ops.import_scene.fbx(filepath=fbx_path)
|
|
for obj in bpy.data.objects:
|
|
if obj.type == "MESH":
|
|
print("MESH:", obj.name, "VGROUPS:", ",".join(g.name for g in obj.vertex_groups))
|