让我们在列表中添加这些按钮的色点和对象。
1
2
3
4
5
6
7
8
9
10
|
public override void OnInspectorGUI () {
serializedObject.Update();
EditorList.Show(serializedObject.FindProperty( "integers" ), EditorListOption.ListSize);
EditorList.Show(serializedObject.FindProperty( "vectors" ));
EditorList.Show(serializedObject.FindProperty( "colorPoints" ), EditorListOption.Buttons);
EditorList.Show(
serializedObject.FindProperty( "objects" ),
EditorListOption.ListLabel | EditorListOption.Buttons);
serializedObject.ApplyModifiedProperties();
}
|
非常大的按钮
这些按钮是太大了,因为每个都是整行的。我们想所有东西都在一起在一行。为此,我们可以指示自动布局把我们的内容在 EditorGUILayout.BeginHorizontal 和EditorGUILayout.EndHorizontal直接调用。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
private static void ShowElements (SerializedProperty list, EditorListOption options) {
bool
showElementLabels = (options & EditorListOption.ElementLabels) != 0,
showButtons = (options & EditorListOption.Buttons) != 0;
for (int i = 0; i < list.arraySize; i++) {
if (showButtons) {
EditorGUILayout.BeginHorizontal();
}
if (showElementLabels) {
EditorGUILayout.PropertyField(list.GetArrayElementAtIndex(i));
}
else {
EditorGUILayout.PropertyField(list.GetArrayElementAtIndex(i), GUIContent.none);
}
if (showButtons) {
ShowButtons();
EditorGUILayout.EndHorizontal();
}
}
}
|
建议使用电驴(eMule)下载分享的资源。
说明:本教程来源互联网或网友分享或出版商宣传分享,仅为学习研究或媒体推广,wanshiok.com不保证资料的完整性。
5/10 首页 上一页 3 4 5 6 7 8 下一页 尾页 |