RuntimePlatform.OSXDashboardPlayerRuntimePlatform.OSXDashboardPlayerDescriptionIn the Dashboard widget on Mac OS X. See Also: Platform dependent Compilation.
JavaScripts
if (Application.platform == RuntimePlatform.OSXDashboardPlayer)
Debug.Log("Do something special here!"); using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { if (Application.platform == RuntimePlatform.OSXDashboardPlayer) Debug.Log("Do something special here!"); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): if Application.platform == RuntimePlatform.OSXDashboardPlayer: Debug.Log('Do something special here!') |
