소스 검색

Change default entrypoint DLL to UnityEngine.CoreModule in v2018 builds

ghorsington 5 년 전
부모
커밋
fa8708f065
1개의 변경된 파일7개의 추가작업 그리고 2개의 파일을 삭제
  1. 7 2
      BepInEx.Preloader/Preloader.cs

+ 7 - 2
BepInEx.Preloader/Preloader.cs

@@ -323,7 +323,12 @@ namespace BepInEx.Preloader
 			"Preloader.Entrypoint",
 			"Assembly",
 			"The local filename of the assembly to target.",
-			"UnityEngine.dll");
+#if UNITY_2018
+			"UnityEngine.CoreModule.dll"
+#else
+			"UnityEngine.dll"
+#endif
+			);
 
 		private static readonly ConfigWrapper<string> ConfigEntrypointType = ConfigFile.CoreConfig.Wrap(
 			"Preloader.Entrypoint",
@@ -361,6 +366,6 @@ namespace BepInEx.Preloader
 			"If true, console is set to the Shift-JIS encoding, otherwise UTF-8 encoding.",
 			false);
 
-		#endregion
+#endregion
 	}
 }