Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

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

Application.isPlaying

public static var isPlaying: bool;

Description

Returns true when in any kind of player (Read Only).

Returns true in the Unity editor when in play mode.

	if (Application.isPlaying) {
	    print("In player or playmode");
	}