[change] 调整RuntimeApi.cs中dllName的实现

main
walon 2023-09-08 20:43:39 +08:00
parent 1d50dfcb6e
commit 7270e9194d
1 changed files with 3 additions and 3 deletions

View File

@ -12,10 +12,10 @@ namespace HybridCLR
{
#if UNITY_STANDALONE_WIN
private const string dllName = "GameAssembly";
#elif UNITY_IOS || UNITY_STANDALONE_OSX || UNITY_WEBGL
private const string dllName = "__Internal";
#else
#elif UNITY_ANDROID || UNITY_STANDALONE_LINUX
private const string dllName = "il2cpp";
#else
private const string dllName = "__Internal";
#endif
/// <summary>