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.

Application.isPlaying

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");
	}