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