包含此页的版本:
不含此页的版本:
在 Playstation 4 上的播放器中。
另请参阅:RuntimePlatform、Platform dependent Compilation.。
using UnityEngine;public class Example : MonoBehaviour { void Start() { if (Application.platform == RuntimePlatform.PS4) { Debug.Log("Do something special here!"); } } }