RuntimePlatform.WiiPlayer Manual     Reference     Scripting  
Scripting > Enumerations > RuntimePlatform
RuntimePlatform.WiiPlayer

RuntimePlatform.WiiPlayer

Description

In the player on Nintendo Wii.

See Also: Platform dependent Compilation.

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

using UnityEngine;
using System.Collections;

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

}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

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