Unity 6.3
0 онлайн 3 гостей 3 в системе
Вход

RuntimePlatform.LinuxEditor

Описание

В редакторе Unity на Linux.

Дополнительные ресурсы: RuntimePlatform, Компиляция в зависимости от платформы.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { if (Application.platform == RuntimePlatform.LinuxEditor) { Debug.Log("Do something special here!"); } } }