RuntimePlatform.WindowsEditorRuntimePlatform.WindowsEditorDescriptionIn the Unity editor on Windows. See Also: Platform dependent Compilation.
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { if (Application.platform == RuntimePlatform.WindowsEditor) Debug.Log("Do something special here!"); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): if Application.platform == RuntimePlatform.WindowsEditor: Debug.Log('Do something special here!') |
