Search Unity

Reverse engineering Unity game from .exe file and _Data folder

Discussion in 'Editor & General Support' started by T-A-M, Apr 17, 2021.

  1. T-A-M

    T-A-M

    Joined:
    Nov 3, 2017
    Posts:
    4
    Hi

    I was wondering if there was a method of converting .exe files and the files in the _Data folder back into project files, assets, and scenes. I made a game in Unity a little over three years ago, and was thinking of going back to patch some (fatal) issues. However, it appears that in edits shortly after I created my final build, I corrupted my project files to the point where, opening up the editor today, the whole thing is unusable.

    To have any chance at untangling this mess, I need to be able to start from the last functioning draft -- whether through unpacking that last semi-usable build or some other method. From other forums on this topic, people have said that reverse engineering a build of a unity game is POSSIBLE but not LEGAL. But since I don't have a binding EULA against myself, the legal issues should not be a problem. Despite this, I can't seem to find an answer on how to actually do it. Can someone help?

    Thanks a lot,
    Timmy
     
  2. Kurt-Dekker

    Kurt-Dekker

    Joined:
    Mar 16, 2013
    Posts:
    38,745
    Generally it's not possible. Data is lost (variable names, comments, etc) during the packaging process. Also many asset conversions result in irretrievable data loss.

    You might find more people who do this sort of thing on the modding forums to perhaps get you bits and bobs of the project out, but nobody here really hassles with that stuff.

    Please consider using source control in order to guard and protect your hard-earned work.

    Personally I use git because it is free and there are tons of tutorials out there to help you set it up.

    Here's how I use git in one of my games, Jetpack Kurt:

    https://forum.unity.com/threads/2-steps-backwards.965048/#post-6282497

    Using fine-grained source control as you work to refine your engineering:

    https://forum.unity.com/threads/whe...grammer-example-in-text.1048739/#post-6783740

    Share/Sharing source code between projects:

    https://forum.unity.com/threads/your-techniques-to-share-code-between-projects.575959/#post-3835837

    Setting up the right .gitignore file:

    https://forum.unity.com/threads/removing-il2cpp_cache-from-project.1084607/#post-6997067