版本:Unity 6 (6000.0)
语言英语
  • C#

GUISkin.verticalScrollbarThumb

建议更正

成功!

感谢您帮助我们提升 Unity 文档的质量。尽管我们无法接受所有提交内容,但我们确实会阅读用户建议的每个更正,并视具体情况进行更新。

关闭

提交失败

出于某些原因,您的更正建议无法提交。请在几分钟后<a>重试</a>。感谢您花时间帮助我们提升 Unity 文档的质量。

关闭

取消

切换到手册
public GUIStyle verticalScrollbarThumb;

描述

GUI.VerticalScrollbar 控件中拖拽的拇指默认使用的样式。

using UnityEngine;

public class Example : MonoBehaviour { // Modifies only the vertical scrollbar thumb of the current GUISkin

float hSbarValue; GUIStyle style;

void OnGUI() { GUI.skin.verticalScrollbarThumb = style; hSbarValue = GUILayout.VerticalScrollbar(hSbarValue, 1.0f, 0.0f, 10.0f); } }