GUI.HorizontalSlider 控件中用于拖动的滑块默认使用的样式。
padding 属性用于确定滑块的大小。
using UnityEngine;
public class Example : MonoBehaviour { // Modifies only the horizontal slider style of the current GUISkin
float hSliderValue = 0.0f; GUIStyle style;
void OnGUI() { GUI.skin.horizontalSliderThumb = style; hSliderValue = GUILayout.HorizontalSlider(hSliderValue, 0.0f, 10.0f); } }