Committed to this self-hosted private repo so a clone builds on any machine without a separate asset sync. Copyrighted Ymir art — do not publish or redistribute. 54198 files, ~2.2 GB. asset_index.txt / assets.zip stay gitignored (derived: bake_asset_index.gd / pack-assets.sh). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013EJxkHiNKS4kybHS3XKyAJ
21 lines
523 B
Python
21 lines
523 B
Python
from FindFilesByExt import FindFilesByExt
|
|
|
|
for name in FindFilesByExt(".msa", "."):
|
|
lines = open(name).read().splitlines()
|
|
|
|
out = open(name, "w")
|
|
for line in lines:
|
|
if "ymir work" in line.lower():
|
|
line = line.lower()
|
|
line = line.replace("\\", "/")
|
|
line = line.replace("d:/ymir work/pc/", "d:/ymir work/pc2/")
|
|
line = line.replace("motionfilename", "MotionFileName")
|
|
line = line.replace("effectfilename", "EffectFileName")
|
|
print line
|
|
out.write("%s\n" % line)
|
|
else:
|
|
out.write("%s\n" % line)
|
|
|
|
|
|
|