Описание
В плеере на Nintendo Switch.
Смотрите так же: RuntimePlatform, Platform dependent Compilation..
using UnityEngine;
public class ExampleClass : MonoBehaviour
{
void Example()
{
if (Application.platform == RuntimePlatform.Switch)
Debug.Log("Do something special here!");
}
}