Descripción

En el player en Playstation 4.

using UnityEngine;

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