Legacy Documentation: Version 2017.2 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

GUISkin.scrollView

Switch to Manual
public GUIStyle scrollView;

Description

Style used by default for the background of ScrollView controls (see GUI.BeginScrollView).

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Vector2 scrollPosition = Vector2.zero; public GUIStyle style; void OnGUI() { GUI.skin.scrollView = style; scrollPosition = GUI.BeginScrollView(new Rect(10, 300, 100, 100), scrollPosition, new Rect(0, 0, 220, 200)); GUI.Button(new Rect(0, 0, 100, 20), "Top-left"); GUI.Button(new Rect(120, 0, 100, 20), "Top-right"); GUI.Button(new Rect(0, 180, 100, 20), "Bottom-left"); GUI.Button(new Rect(120, 180, 100, 20), "Bottom-right"); GUI.EndScrollView(); } }
对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答