Page 1 of 1
Asset Studio Android .APK 3D Models Missing
Posted: Mon Apr 05, 2021 1:50 am
by DragonKris
Hey does anyone know the reason as to why when I decompile a mobile .apk Android game that I only see a very few of the 3D models when I import the .Assets files or the whole game folder into Asset Studio and I don’t see any other 3D models except for 3 character 3D models but every other 3D model in the game is missing in the Assets tab of the Asset Studio? (The game is made on the Unity mobile engine)
Re: Asset Studio Android .APK 3D Models Missing
Posted: Mon Apr 05, 2021 11:06 am
by Sharppy
Either your data is being stored in the .obb or in a cache folder. Thats why your missing assets.
Re: Asset Studio Android .APK 3D Models Missing
Posted: Mon Apr 05, 2021 12:02 pm
by Drawing
DragonKris wrote: ↑Mon Apr 05, 2021 1:50 am
Hey does anyone know the reason as to why when I decompile a mobile .apk Android game that I only see a very few of the 3D models when I import the .Assets files or the whole game folder into Asset Studio and I don’t see any other 3D models except for 3 character 3D models but every other 3D model in the game is missing in the Assets tab of the Asset Studio? (The game is made on the Unity mobile engine)
I suggest you to install the .apk ( especially if it this to small for containing data), also for getting latest update.
Then there are different way the assets could be stored:
if the downloaded .apk is small then you need to find in cache or .obb
if the downloaded .apk is big , the assets are inside it ( a lot of chinese mobile game use this method).
Sometimes games combine these types of storage so for example you got the base version in one big .apk and updates in .obb or in cache(data), so I suggest you to look in every path I mention below.
Generally you will find assets in one of those paths :
-SdCard/Android/Data
-SdCard/Android/OBB
-Data/app ( generally game storing assets in big .apk use this path)
-Data/data ( very uncommon) .
Re: Asset Studio Android .APK 3D Models Missing
Posted: Mon Apr 05, 2021 11:09 pm
by DragonKris
Thanks that’s where they were at.