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
28 lines
492 B
Python
28 lines
492 B
Python
METIN2THEMA = "M2BG.mp3"
|
|
|
|
loginMusic="login_window.mp3"
|
|
createMusic="characterselect.mp3"
|
|
selectMusic="characterselect.mp3"
|
|
fieldMusic=METIN2THEMA
|
|
|
|
def SaveLastPlayFieldMusic():
|
|
global fieldMusic
|
|
|
|
try:
|
|
with open("BGM/lastplay.inf", "w") as lastPlayFile:
|
|
lastPlayFile.write(fieldMusic)
|
|
except IOError:
|
|
return
|
|
|
|
|
|
def LoadLastPlayFieldMusic():
|
|
global fieldMusic
|
|
|
|
try:
|
|
with open("BGM/lastplay.inf", "r") as lastPlayFile:
|
|
fieldMusic=lastPlayFile.read()
|
|
except IOError:
|
|
return
|
|
|
|
|