包含此页的版本:
不含此页的版本:
这是一个只读属性,返回是否启用了覆盖率。
using UnityEngine; using UnityEngine.TestTools;public class CoverageExample : MonoBehaviour { void Start() { if (Coverage.enabled) Debug.Log("Coverage is enabled."); else Debug.Log("Coverage is not enabled."); } }