Описание
Настольный или портативный компьютер.
//Прикрепите этот скрипт к GameObject
//Этот скрипт проверяет, на каком типе устройства работает Приложение, и выводит это на консоль
using UnityEngine;
public class DeviceTypeExample : MonoBehaviour
{
//Это текст для метки в верхней части экрана
string m_DeviceType;
void Update()
{
//Output the device type to the console window
Debug.Log("Device type : " + m_DeviceType);
//Проверить, является ли устройство, на котором запущено это, консолью
if (SystemInfo.deviceType == DeviceType.Console)
{
//Change the text of the label
m_DeviceType = "Console";
}
//Check if the device running this is a desktop
if (SystemInfo.deviceType == DeviceType.Desktop)
{
m_DeviceType = "Desktop";
}
//Check if the device running this is a handheld
if (SystemInfo.deviceType == DeviceType.Handheld)
{
m_DeviceType = "Handheld";
}
//Check if the device running this is unknown
if (SystemInfo.deviceType == DeviceType.Unknown)
{
m_DeviceType = "Unknown";
}
}
}