Version: 2018.4

ScrollViewScope

class in UnityEngine

マニュアルに切り替える

説明

BeginScrollView / EndScrollView を管理する Disposable ヘルパークラス

BeginScrollView はコンストラクションのときに呼び出され、EndScrollView はインスタンスが削除されるときに呼び出されます。 スクロールビューは両側に配置されたスクロールバーを使用してスクリーン上で小さな範囲だとしても広い範囲を見ることが可能になります。

using UnityEngine;

public class ExampleClass : MonoBehaviour { // The position of the scrolling viewport public Vector2 scrollPosition = Vector2.zero; void OnGUI() { // An absolute-positioned example: We make a scrollview that has a really large client // rect and put it in a small rect on the screen. using (var scrollScope = new GUI.ScrollViewScope(new Rect(10, 300, 100, 100), scrollPosition, new Rect(0, 0, 220, 200))) { scrollPosition = scrollScope.scrollPosition;

// Make four buttons - one in each corner. The coordinate system is defined // by the last parameter to the ScrollScope constructor. 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"); } // Now the scroll view is ended. } }

変数

handleScrollWheelこの ScrollView がスクロールホイールイベントを処理するかどうか(デフォルトは true )
scrollPositionThe 変更された scrollPosition 。例にあるように戻り値として得た値は変数に渡します。

コンストラクタ

GUI.ScrollViewScope新しい ScrollViewScope を作成し、対応する ScrollView を開始します。