RuntimePlatform.OSXDashboardPlayer Manual     Reference     Scripting  
Scripting > Enumerations > RuntimePlatform
RuntimePlatform.OSXDashboardPlayer

RuntimePlatform.OSXDashboardPlayer

Description

In the Dashboard widget on Mac OS X.

See Also: Platform dependent Compilation.

JavaScript
if (Application.platform == RuntimePlatform.OSXDashboardPlayer)
Debug.Log("Do something special here!");

using UnityEngine;
using System.Collections;

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

}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
if Application.platform == RuntimePlatform.OSXDashboardPlayer:
Debug.Log('Do something special here!')