Go to file
VaDiM ea09a8de64 Add support for sprites with alpha mask
- Sprites with alpha mask can now be viewed and exported with transparency
- Added hotkeys to control display of an alpha mask  on the preview tab
- Added an option to the export settings to enable/disable export with alpha mask as well
- Prevented texture2D preview options from being changed with hotkeys outside of texture preview (e.g. when some other asset is selected)
2022-11-21 01:59:16 +03:00
.github/workflows Create build.yml 2022-11-17 04:22:06 +03:00
AssetStudio Update project files 2022-11-17 04:39:49 +03:00
AssetStudio.PInvoke Update project files 2022-11-17 04:39:49 +03:00
AssetStudioFBXNative Merge branch 'Perfare_master' into AssetStudio-mod 2021-12-13 04:45:41 +02:00
AssetStudioFBXWrapper Update project files 2022-11-17 04:39:49 +03:00
AssetStudioGUI Add support for sprites with alpha mask 2022-11-21 01:59:16 +03:00
AssetStudioUtility Add support for sprites with alpha mask 2022-11-21 01:59:16 +03:00
Texture2DDecoderNative Texture2DDecoderNative - Linux/macOS compatibility fix 2021-12-15 02:49:28 +02:00
Texture2DDecoderWrapper Update project files 2022-11-17 04:39:49 +03:00
.gitattributes Initial commit 2015-10-30 04:41:37 +02:00
.gitignore using Nuget 2020-03-24 07:19:59 +08:00
AssetStudio.sln fix build 2021-06-27 09:42:13 +08:00
LICENSE update LICENSE 2020-03-28 01:22:26 +08:00
README.md support 2022.1 2022-11-17 04:32:05 +03:00

AssetStudio

Build status

None of the repo, the tool, nor the repo owner is affiliated with, or sponsored or authorized by, Unity Technologies or its affiliates.

AssetStudio is a tool for exploring, extracting and exporting assets and assetbundles.

Features

  • Support version:
    • 3.4 - 2022.1
  • Support asset types:
    • Texture2D : convert to png, tga, jpeg, bmp
    • Sprite : crop Texture2D to png, tga, jpeg, bmp
    • AudioClip : mp3, ogg, wav, m4a, fsb. support convert FSB file to WAV(PCM)
    • Font : ttf, otf
    • Mesh : obj
    • TextAsset
    • Shader
    • MovieTexture
    • VideoClip
    • MonoBehaviour : json
    • Animator : export to FBX file with bound AnimationClip

Requirements

Usage

Load Assets/AssetBundles

Use File-Load file or File-Load folder.

When AssetStudio loads AssetBundles, it decompresses and reads it directly in memory, which may cause a large amount of memory to be used. You can use File-Extract file or File-Extract folder to extract AssetBundles to another folder, and then read.

Extract/Decompress AssetBundles

Use File-Extract file or File-Extract folder.

Export Assets

use Export menu.

Export Model

Export model from "Scene Hierarchy" using the Model menu.

Export Animator from "Asset List" using the Export menu.

With AnimationClip

Select model from "Scene Hierarchy" then select the AnimationClip from "Asset List", using Model-Export selected objects with AnimationClip to export.

Export Animator will export bound AnimationClip or use Ctrl to select Animator and AnimationClip from "Asset List", using Export-Export Animator with selected AnimationClip to export.

Export MonoBehaviour

When you select an asset of the MonoBehaviour type for the first time, AssetStudio will ask you the directory where the assembly is located, please select the directory where the assembly is located, such as the Managed folder.

For Il2Cpp

First, use my another program Il2CppDumper to generate dummy dll, then when using AssetStudio to select the assembly directory, select the dummy dll folder.

Build

  • Visual Studio 2022 or newer
  • AssetStudioFBXNative uses FBX SDK 2020.2.1, before building, you need to install the FBX SDK and modify the project file, change include directory and library directory to point to the FBX SDK directory

Open source libraries used

Texture2DDecoder