Стиль, используемый по умолчанию для перетаскиваемого ползунка в элементах управления GUI.HorizontalScrollbar.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public float hSbarValue; public GUIStyle style; void OnGUI() { GUI.skin.horizontalScrollbarThumb = style; hSbarValue = GUILayout.HorizontalScrollbar(hSbarValue, 1.0F, 0.0F, 10.0F); } }