Description

In the Unity editor on Linux.

using UnityEngine;
using System.Collections;

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