Version: 2017.4
public GUIStyle horizontalScrollbarThumb ;

説明

GUI.HorizontalScrollbar の thumb (つまみ部分)で使用されるスタイル

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); } }