Version: 2020.3

StyleSheet

class in UnityEngine.UIElements

切换到手册

描述

样式表应用于视觉元素以控制用户界面的布局和视觉外观。

StyleSheet 类在项目中保存导入的 USS 文件数据。

加载后,可将样式表附加到 VisualElement 对象以影响元素本身及其子级。

using UnityEngine.UIElements;
using UnityEditor;

public class MyEditorWindow : EditorWindow { void OnEnable() { rootVisualElement.styleSheets.Add(AssetDatabase.LoadAssetAtPath<StyleSheet>("Assets/styles.uss")); } }

变量

contentHashA hash value computed from the stylesheet content.