Version: 2018.2

GUISkin.horizontalScrollbarRightButton

マニュアルに切り替える
public GUIStyle horizontalScrollbarRightButton ;

説明

GUI.HorizontalScrollbar の右側のボタンで使用されるスタイル

using UnityEngine;

public class Example : MonoBehaviour { // Modifies only the horizontal scrollbar // left button of the current GUISkin

float hSbarValue; GUIStyle style;

void OnGUI() { GUI.skin.horizontalScrollbarRightButton = style; hSbarValue = GUILayout.HorizontalScrollbar(hSbarValue, 1.0f, 0.0f, 10.0f); } }