Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mafaca/UtinyRipper
GUI and API library to work with Engine assets, serialized and bundle files
https://github.com/mafaca/UtinyRipper
asset assetbundle bundle debug extract project resource ripper source unity unity3d unpack viewer
Last synced: 2 months ago
JSON representation
GUI and API library to work with Engine assets, serialized and bundle files
- Host: GitHub
- URL: https://github.com/mafaca/UtinyRipper
- Owner: mafaca
- License: mit
- Created: 2018-02-11T17:00:44.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-14T21:53:29.000Z (almost 3 years ago)
- Last Synced: 2024-10-29T15:17:34.435Z (3 months ago)
- Topics: asset, assetbundle, bundle, debug, extract, project, resource, ripper, source, unity, unity3d, unpack, viewer
- Language: C#
- Homepage:
- Size: 21.3 MB
- Stars: 2,820
- Watchers: 103
- Forks: 433
- Open Issues: 800
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-unity3d - UtinyRipper - GUI and API library for working with Engine assets, serialized and bundle files. (Open Source Repositories / Modding)
- awesome-unity-open-source-on-github - UtinyRipper - Tool for ripping assets from Engine resource files (Reverse Engineering)
README
# uTinyRipper
[![Download uTinyRipper](https://a.fsdn.com/con/app/sf-download-button)](https://sourceforge.net/projects/utinyripper/files)[![Build status](https://ci.appveyor.com/api/projects/status/yd78hqp83f7vjkwb?svg=true)](https://ci.appveyor.com/project/mafaca/utinyripper)
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/UtinyRipper/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)uTinyRipper is a tool for extracting assets from serialized files (*CAB-*\*, *\*.assets*, *\*.sharedAssets*, etc.) and assets bundles (*\*.unity3d*, *\*.assetbundle*, etc.) and converting them into native Engine format.
Important note: work on this project has been suspended. The Author is going to restart it from scratch, please redirect development and focus on other things. So don't waste your time on PRs, propositions or complex issues. The only exception is bug fixes.
Supported versions: 1.x to 2019.x (since development is suspended, 2020.x or greater won't be supported)
## Export features
* Scenes
* Prefabs (GameObjects with transform components)
* AnimationClips (legacy, generic, humanoid)
* Meshes
* Shaders (native listing)
* Textures
* Audio
* Fonts
* Movie textures
* Materials
* AnimatorControllers
* Avatars
* Terrains
* TextAssets
* Components:
* MeshRenderer
* SkinnedMeshRenderer
* Animation
* Animator
* Canvas
* Light
* ParticleSystem
* Colliders
* Rigidbody
* AudioSource
* Camera
* MonoBehaviour (Mono only)
* MonoScript (Mono only)## Structure
* *uTinyRipperCore*
Core library. It's designed as an single module without any third party dependencies.
* *uTinyRipperGUI*Basic graphic interface application. It has some extra converters, so additionally it exports:
* AudioClip .wav export
* Texture2D .png export (with Sprites)
* Shader DirectX blob export
* References to build-in Engine assets
* *uTinyRipperConsole* and *uTinyRipperConsoleNETCore*Sample console application which is designed to test Core library functionality.
It's a command line application. Drag and drop resource file(s) or/and folder(s) onto the .exe to retrieve the assets. It will then automaticly try to find resource dependencies, create a 'Ripped' folder and extract all supported assets into the created directory.
As this is a sample application, I'm not going to improve it in any way.### Requirements:
If you want to build a solution, you'll need:
\- .NET Framework 4.7.2 + .NET Core 2.0 SDK
\- Compiler with C# 7.3 syntax support (Visual Studio 2017)
If you want to run binary files, you need to install:
\- [.NET Framework 4.7.2](https://support.microsoft.com/en-us/help/4054530/microsoft-net-framework-4-7-2-offline-installer-for-windows)
\- [Microsoft Visual C++ 2015](https://www.microsoft.com/en-us/download/details.aspx?id=53840) Redistributables\- [Unity 2017.3.0f3 or greater](https://unity3d.com/get-unity/download/archive) (NOTE: your editor version must be no less than the game's version)