Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Description

In the player on the XBOX360.

See Also: Platform dependent Compilation.

	if (Application.platform == RuntimePlatform.XBOX360)
		Debug.Log("Do something special here!");
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Example() {
        if (Application.platform == RuntimePlatform.XBOX360)
            Debug.Log("Do something special here!");
        
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

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