buildTargetGroupName | The platform name. |
index | The index of the Quality Level, must be positive and lower than the count of Quality Levels. |
error | The error found by the API. |
bool If errors were found.
[Editor Only] Includes a platform to be supported by the Quality Level.
public void IncludeQualityLevelForPlatform(int qualityLevelToExclude, BuildTarget platformToExclude) { var activeBuildTargetGroup = BuildPipeline.GetBuildTargetGroup(platformToExclude); var namedBuildTarget = NamedBuildTarget.FromBuildTargetGroup(activeBuildTargetGroup); bool result = QualitySettings.TryIncludePlatformAt(namedBuildTarget.TargetName, qualityLevelToExclude, out var ex); Debug.Log(result ? "Successfully included the platform at the specified quality level." : $"Failed to include the platform. {ex.Message}"); }
Includes a platform in a given Quality Level.