Version: 5.6 (switch to 2017.1b)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

GUISkin.horizontalScrollbarLeftButton

Switch to Manual
public GUIStyle horizontalScrollbarLeftButton;

Description

Style used by default for the left button on GUI.HorizontalScrollbar controls.

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