Version: 2022.3
LanguageEnglish
  • C#

PlayerSettings.GetPlatformIcons

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual

Declaration

public static PlatformIcon[] GetPlatformIcons(Build.NamedBuildTarget buildTarget, PlatformIconKind kind);

Parameters

buildTarget The NamedBuildTarget.
kind Each platform supports a different set of icon kinds. These can be found in the specific platform namespace (for example iOSPlatformIconKind.

Description

Gets the list of available icon slots for the specified build target and kind.

If you use PlayerSettings.SetPlatformIcons to set icons, Unity needs to retrieve each icon's build target and icon kind."


Declaration

public static PlatformIcon[] GetPlatformIcons(BuildTargetGroup platform, PlatformIconKind kind);

Parameters

platform The full list of platforms that support this API and the supported icon kinds can be found in icon kinds.
kind Each platform supports a different set of icon kinds. These can be found in the specific platform namespace (for example iOSPlatformIconKind).

Description

BuildTargetGroup is marked for deprecation in the future. Use NamedBuildTarget instead.