Version: 2017.2

GUISkin.horizontalScrollbar

매뉴얼로 전환
public GUIStyle horizontalScrollbar ;

설명

Style used by default for the background part of GUI.HorizontalScrollbar controls.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public float hSbarValue; public GUIStyle style; void OnGUI() { GUI.skin.horizontalScrollbar = style; hSbarValue = GUILayout.HorizontalScrollbar(hSbarValue, 1.0F, 0.0F, 10.0F); } }