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 65000be commit 9bec99dCopy full SHA for 9bec99d
Packages/com.unity.inputsystem/InputSystem/Editor/InputSystemPluginControl.cs
@@ -47,9 +47,9 @@ static bool BuildTargetNeedsPlugin()
47
BuildTarget target = EditorUserBuildSettings.activeBuildTarget;
48
foreach (var platform in TargetNoPluginNeeded)
49
{
50
- if (platform == target) return true;
+ if (platform == target) return false;
51
}
52
- return false;
+ return true;
53
54
55
private const string PlugInName = "com.unity.inputsystem.";
0 commit comments