Version: 2017.1
public static bool isPlaying ;

描述

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

当 Unity Editor 处于游戏模式时,返回 true。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { if (Application.isPlaying) print("In player or playmode"); } }