ADD: object movement system

This commit is contained in:
2025-11-24 17:54:39 +09:00
parent 7ec4b16502
commit 3c3137258d
5 changed files with 144 additions and 9 deletions

View File

@@ -59,7 +59,7 @@ def parse_gltf_roles(gltf_path: Path):
def mark(uri, role):
if not uri:
return
# normal > albedo > mr 우선
prio = {"normal": 3, "albedo": 2, "mr": 1}
old = roles.get(uri)
if old is None or prio[role] > prio.get(old, 0):