About 3,380 results
Open links in new tab
  1. Can I edit or extract the contents of an asset bundle in Unity?

    Aug 8, 2013 · I have a Unity assetbundle with me. I have some more bundles inside those and some db files. Is there a simple way to edit or extract the contents of an asset bundle.

  2. unity game engine - Recompiling/Editing an asset within a …

    Mar 8, 2015 · Nowadays, the replacement of choice seems to be: Unity Assets Bundle Extractor Avalonia (UABEA) This tool can decompress and export Unity assets. Then, you can edit files …

  3. unity game engine - How to extract BundleResources files (.asset ...

    Apr 16, 2022 · What should I do if i want to extract this .asset game file? I think this is the asset file of the game, but I can't open it with utinnyripper or Asset Bundle Extractor. File download …

  4. android - How can I extract the image/3d model assets from a …

    Jun 2, 2022 · I've downloaded the APK file for a game called Subway Surfers I'm also trying to "extract" the assets from the game (images, 3D models, etc). I've decompiled it using APKTool …

  5. Access item inside Unity sharedassets.assets file programmatically …

    0 I'm working on a Cities: Skylines mod and I want to access the sharedassets.assets file (s) the game has in the Data folder programmatically to get a mesh/prefab. I've found a tool called …

  6. unity game engine - Cannot load an Asset Bundle - Stack Overflow

    Mar 14, 2017 · AssetBundle bundle = www.assetBundle; foreach(var name in bundle.GetAllAssetNames()){ Debug.Log(name); } mainAsset may be null depending on how …

  7. android - Unity game security - Stack Overflow

    Sep 5, 2024 · AssetBundles allow Unity assets (such as 3D models, animations, textures) to be stored as a standalone package and later included in the game. If there are assets in your …

  8. Is there way to read unity assets MonoBehaviour.txt file?

    Sep 13, 2019 · 1 I'm extract unity assets from unity asset bundle file, But I can't find way to read those files use programs.

  9. When are dependent asset copied to a bundles in Unity …

    Apr 10, 2023 · i'm using unity addressable system. My understanding is that when i have bundles A and B, and i have assets that are simultaneously dependent on certain assets in A and …

  10. unity game engine - How can i load asset bundle which don't …

    Dec 5, 2019 · According to the AssetBundle documentation, there is now the ability to call GetAllAssetNames () to return a list of all asset names in a bundle as a string array. You can …