This commit is contained in:
2025-04-17 04:52:48 +08:00
commit 9985b73dc1
3708 changed files with 2387532 additions and 0 deletions

View File

@ -0,0 +1,13 @@
# This code as to be ran in a Maya able to use 'dwpicker' package.
import os
from dwpicker.ingest import animschool
SOURCE_DIRECTORY = "" # Replace those variables before conversion
DESTINATION_DIRECTORY = ""
for f in os.listdir(SOURCE_DIRECTORY):
if not f.lower().endswith(".pkr"):
continue
filepath = os.path.join(SOURCE_DIRECTORY, f)
animschool.convert(filepath, DESTINATION_DIRECTORY)