Enum ScriptExportMode
Namespace: AssetRipper.Export.UnityProjects.Configuration
Assembly: AssetRipper.Export.UnityProjects.dll
Syntax
public enum ScriptExportMode
Fields
Name | Description |
---|---|
Decompiled | Use the ILSpy decompiler to generate CS scripts. This is reliable. However, it's also time-consuming and contains many compile errors. |
DllExportWithoutRenaming | Export assemblies in their compiled Dll form. Experimental. Might not work at all. |
DllExportWithRenaming | Special assemblies, such as Assembly-CSharp, are renamed to have compatible names. |
Hybrid | Special assemblies, such as Assembly-CSharp, are decompiled to CS scripts with the ILSpy decompiler. Other assemblies are saved as DLL files. |