mirror of
https://github.com/HypoxiE/rimworld-add-my-music-mod.git
synced 2025-12-06 05:45:58 +00:00
Implementation of the main functionality of the mod
This commit is contained in:
@@ -3,11 +3,11 @@
|
||||
<SongDef>
|
||||
<clipPath>Gameplay/Kafka Theme Music EXTENDED - A Dramatic Irony (tnbee mix).Honkai_ Star Rail</clipPath>
|
||||
<volume>1</volume>
|
||||
<tense>true</tense>
|
||||
<tense>false</tense>
|
||||
</SongDef>
|
||||
<SongDef>
|
||||
<clipPath>Gameplay/Wildfire (Cocolia Boss Theme).Honkai_ Star Rail</clipPath>
|
||||
<volume>1</volume>
|
||||
<tense>true</tense>
|
||||
<tense>false</tense>
|
||||
</SongDef>
|
||||
</Defs>
|
||||
23
add_my_music.bat
Normal file
23
add_my_music.bat
Normal file
@@ -0,0 +1,23 @@
|
||||
@echo off
|
||||
echo This command will completely overwrite the Songs_Gameplay.xml file of this modification. If you agree, press Enter, and if not, close this window.
|
||||
pause
|
||||
|
||||
setlocal enabledelayedexpansion
|
||||
chcp 65001
|
||||
echo ^<?xml version="1.0" encoding="utf-8" ?^> > Defs\SongDefs\Songs_Gameplay.xml
|
||||
echo ^<Defs^> >> Defs\SongDefs\Songs_Gameplay.xml
|
||||
|
||||
for %%f in (Sounds\Gameplay\*) do (
|
||||
set sound_name=%%~nf
|
||||
|
||||
echo ^<SongDef^> >> Defs\SongDefs\Songs_Gameplay.xml
|
||||
echo ^<clipPath^>Gameplay/!sound_name!^</clipPath^> >> Defs\SongDefs\Songs_Gameplay.xml
|
||||
echo ^<volume^>1^</volume^> >> Defs\SongDefs\Songs_Gameplay.xml
|
||||
echo ^<tense^>false^</tense^> >> Defs\SongDefs\Songs_Gameplay.xml
|
||||
echo ^</SongDef^> >> Defs\SongDefs\Songs_Gameplay.xml
|
||||
)
|
||||
|
||||
echo ^</Defs^> >> Defs\SongDefs\Songs_Gameplay.xml
|
||||
|
||||
echo Songs_Gameplay.xml overwritten. After restarting the game, music will be added.
|
||||
pause
|
||||
Reference in New Issue
Block a user