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