Version: 2019.1

Description

In the player on the Apple's tvOS.

using UnityEngine;

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