
I was actually try to data mined the demo…but i end up with a tool who can just open assets files…but i’m only looking for tools who can unpack .resource files or RESS files
I try quick bms but no success…sadly :/
Yes the game is using unity engine… but i don’t have much experiment on unity games…and I would appreciate if someone can give a shot to this…pretty please ?
Here the most files that can contains music :
http://www.sendbox.fr/3a1ddaaed08f29e7/sharedassets1.assets.zip
Select .resource file
Open in hex editor of choice (I like HxD personally) and find file header that identifies the file type. (this example is only for FSB files, there are many other things this could be, but for the purposes of Unity games it’s almost always FSB)
Select the following options in VGMToolbox under Advanced Cutter and drag and drop your files to search them for all instances of FSB files and save these files as .fsb
After you extract the FSB files, Use fsb_aud_extr with the following batch file script (make a file named fsb.bat) that will convert all .fsb files to .wav (FSB files and the program must all be in the same folder for this to work, otherwise you have to put absolute paths in)
FOR %%a IN ("*.fsb") DO ("fsb_aud_extr.exe" "%%a")
Sometimes, the FSB files are stored in the .assets files which there is a Unity extraction script made for QuickBMS that will extract the files directly to .fsb, sometimes with an identifying filename. Otherwise, you gotta do it with the above method and the file names aren’t very descriptive, but hey, at least you get the music.