├── .gitattributes ├── .gitignore ├── Doorstop ├── Assets │ ├── doorstop_config.ini │ └── run.sh ├── Linux │ ├── x64 │ │ ├── .doorstop_version │ │ └── libdoorstop.so │ └── x86 │ │ ├── .doorstop_version │ │ └── libdoorstop.so ├── MacOS │ └── x64 │ │ ├── .doorstop_version │ │ └── libdoorstop.dylib └── Win │ ├── x64 │ ├── .doorstop_version │ └── winhttp.dll │ └── x86 │ ├── .doorstop_version │ └── winhttp.dll ├── README.md ├── UnityDebug.sln ├── libs ├── Mono.Cecil.dll ├── Mono.CompilerServices.SymbolWriter.dll └── pdb2mdb.exe └── src ├── Entrypoint.cs ├── Patches.cs └── UnityDebug.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/.gitignore -------------------------------------------------------------------------------- /Doorstop/Assets/doorstop_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/Doorstop/Assets/doorstop_config.ini -------------------------------------------------------------------------------- /Doorstop/Assets/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/Doorstop/Assets/run.sh -------------------------------------------------------------------------------- /Doorstop/Linux/x64/.doorstop_version: -------------------------------------------------------------------------------- 1 | 4.0.0 -------------------------------------------------------------------------------- /Doorstop/Linux/x64/libdoorstop.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/Doorstop/Linux/x64/libdoorstop.so -------------------------------------------------------------------------------- /Doorstop/Linux/x86/.doorstop_version: -------------------------------------------------------------------------------- 1 | 4.0.0 -------------------------------------------------------------------------------- /Doorstop/Linux/x86/libdoorstop.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/Doorstop/Linux/x86/libdoorstop.so -------------------------------------------------------------------------------- /Doorstop/MacOS/x64/.doorstop_version: -------------------------------------------------------------------------------- 1 | 4.0.0 -------------------------------------------------------------------------------- /Doorstop/MacOS/x64/libdoorstop.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/Doorstop/MacOS/x64/libdoorstop.dylib -------------------------------------------------------------------------------- /Doorstop/Win/x64/.doorstop_version: -------------------------------------------------------------------------------- 1 | 4.0.0 -------------------------------------------------------------------------------- /Doorstop/Win/x64/winhttp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/Doorstop/Win/x64/winhttp.dll -------------------------------------------------------------------------------- /Doorstop/Win/x86/.doorstop_version: -------------------------------------------------------------------------------- 1 | 4.0.0 -------------------------------------------------------------------------------- /Doorstop/Win/x86/winhttp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/Doorstop/Win/x86/winhttp.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/README.md -------------------------------------------------------------------------------- /UnityDebug.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/UnityDebug.sln -------------------------------------------------------------------------------- /libs/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/libs/Mono.Cecil.dll -------------------------------------------------------------------------------- /libs/Mono.CompilerServices.SymbolWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/libs/Mono.CompilerServices.SymbolWriter.dll -------------------------------------------------------------------------------- /libs/pdb2mdb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/libs/pdb2mdb.exe -------------------------------------------------------------------------------- /src/Entrypoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/src/Entrypoint.cs -------------------------------------------------------------------------------- /src/Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/src/Patches.cs -------------------------------------------------------------------------------- /src/UnityDebug.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sl4vP0weR/UnityDebug/HEAD/src/UnityDebug.csproj --------------------------------------------------------------------------------