默认情况下由 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.horizontalSlider = style; hSliderValue = GUILayout.HorizontalSlider(hSliderValue, 0.0f, 10.0f); } }