尝试搜索 GUIStyle。该函数返回 NULL,并且不会给出错误。
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour {
public string aStyleName = "A Style I have";
void OnGUI() {
if (GUI.skin.FindStyle(aStyleName) == null)
Debug.LogWarning("No style named \"" + aStyleName + "\" could be found");
}
}