可选的 Scrollbar 对象,已链接至 ScrollRect 的垂直滚动。
using UnityEngine; using System.Collections; using UnityEngine.UI; // Required when Using UI elements.
public class ExampleClass : MonoBehaviour { public ScrollRect myScrollRect; public Scrollbar newScrollBar;
public void Start() { // Assigns a scroll bar element to the ScrollRect, allowing you to scroll in the vertical axis. myScrollRect.verticalScrollbar = newScrollBar; } }