手册
脚本 API
unity3d.com
Version:
2018.1
2021.1
2020.3
2020.2
2020.1
2019.4
2019.3
2019.2
2019.1
2018.4
2018.3
2018.2
2018.1
2017.4
2017.3
2017.2
2017.1
5.6
手册
脚本 API
语言:
中文
English
中文
日本語
Español
한국어
Русский
脚本 API
Version:
2018.1
2021.1
2020.3
2020.2
2020.1
2019.4
2019.3
2019.2
2019.1
2018.4
2018.3
2018.2
2018.1
2017.4
2017.3
2017.2
2017.1
5.6
Experimental
: this API is experimental and might be changed or removed in the future.
UQueryExtensions
.Q
切换到手册
public static T
Q
(
Experimental.UIElements.VisualElement
e
, string
name
, string
className
);
public static T
Q
(
Experimental.UIElements.VisualElement
e
, string
name
, params string[]
classes
);
参数
e
要对其应用选择器的根 VisualElement。
name
如果指定,将选择具有此名称的元素。
classes
如果指定,将选择具有给定类的元素(不要与 Type 混淆)。
className
如果指定,将选择具有给定类的元素(不要与 Type 混淆)。
返回
T
与所有条件匹配的第一个元素或 null(如果未找到)。
描述
方便重载,是 Query<T>.Build().First() 的简便方法。