GUI.HorizontalScrollbar 控件上的向左按钮默认使用的样式。
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public float hSbarValue; public GUIStyle style; void OnGUI() { GUI.skin.horizontalScrollbarLeftButton = style; hSbarValue = GUILayout.HorizontalScrollbar(hSbarValue, 1.0F, 0.0F, 10.0F); } }