public static bool isBatchMode ;

描述

如果从命令行以 -batchmode 标志启动了 Unity,则返回 true(只读)。

using UnityEngine;

public class Example : MonoBehaviour { void Start() { if (Application.isBatchMode) { Debug.Log("In BatchMode"); } } }