样式表应用于视觉元素以控制用户界面的布局和视觉外观。
StyleSheet 类在项目中保存导入的 USS 文件数据。
加载后,可将样式表附加到 VisualElement 对象以影响元素本身及其子级。
using UnityEngine.UIElements; using UnityEditor;
public class MyEditorWindow : EditorWindow { void OnEnable() { rootVisualElement.styleSheets.Add(AssetDatabase.LoadAssetAtPath<StyleSheet>("Assets/styles.uss")); } }
contentHash | A hash value computed from the stylesheet content. |