Version: 2018.2
public static bool isPlaying ;

Description

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