Manual     Reference     Scripting  
  
Scripting > Enumerations > RuntimePlatform   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Attributes
  • Enumerations
  • History
  • Index
  • RuntimePlatform
  • All Members
  • Values
  • Android
  • FlashPlayer
  • IPhonePlayer
  • NaCl
  • OSXDashboardPlayer
  • OSXEditor
  • OSXPlayer
  • OSXWebPlayer
  • PS3
  • WiiPlayer
  • WindowsEditor
  • WindowsPlayer
  • WindowsWebPlayer
  • XBOX360

RuntimePlatform.WindowsWebPlayer  

RuntimePlatform.WindowsWebPlayer

Description

In the web player on Windows.

See Also: Platform dependent Compilation.

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

using UnityEngine;
using System.Collections;

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

}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

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