Version: 2021.1
public static void Break ();

描述

暂停该 Editor。

当您想要检查该 Inspector 上的某些值并且您无法手动暂停它时, 这非常有用。

using UnityEngine;

public class ExampleScript : MonoBehaviour { void Start() { Debug.Break(); } }