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