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