Versions with this page:
Versions without this page:
Returns true when in any kind of player is active.(Read Only).
Returns true in the Unity editor when in play mode.
using UnityEngine;class Example : MonoBehaviour { void Start() { if (Application.isPlaying) { print("In player or playmode"); } } }