Skip to content

Commit

Permalink
fixed switched logic
Browse files Browse the repository at this point in the history
  • Loading branch information
ritamerkl committed Jan 2, 2025
1 parent 65000be commit 9bec99d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ static bool BuildTargetNeedsPlugin()
BuildTarget target = EditorUserBuildSettings.activeBuildTarget;
foreach (var platform in TargetNoPluginNeeded)
{
if (platform == target) return true;
if (platform == target) return false;
}
return false;
return true;
}

private const string PlugInName = "com.unity.inputsystem.";
Expand Down

0 comments on commit 9bec99d

Please sign in to comment.