We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c34d84 commit d18a6f2Copy full SHA for d18a6f2
test/Scripts.Integration.Test/Editor/Builder.cs
@@ -134,6 +134,10 @@ public static void BuildMacIl2CPPPlayer()
134
public static void BuildLinuxIl2CPPPlayer()
135
{
136
Debug.Log("Builder: Building Linux IL2CPP Player");
137
+ PlayerSettings.SetUseDefaultGraphicsAPIs(BuildTarget.StandaloneLinux64, false);
138
+ PlayerSettings.SetGraphicsAPIs(BuildTarget.StandaloneLinux64, new[] { UnityEngine.Rendering.GraphicsDeviceType.OpenGLCore });
139
+ PlayerSettings.gpuSkinning = false;
140
+ PlayerSettings.graphicsJobs = false;
141
BuildIl2CPPPlayer(BuildTarget.StandaloneLinux64, BuildTargetGroup.Standalone, BuildOptions.StrictMode);
142
}
143
public static void BuildAndroidIl2CPPPlayer()
0 commit comments