返回介绍

GUI.ScrollTo 滚动至

发布于 2019-12-18 15:37:45 字数 2380 浏览 1044 评论 0 收藏 0

JavaScript => public static function ScrollTo(position: Rect): void;
C# => public static void ScrollTo(Rect position);

Parameters 参数

Description 描述

Scrolls all enclosing scrollviews so they try to make position visible.

滚动scrollviews到position指定的位置,通俗来说就是把内容滚动到指定的坐标。

JavaScript:

// Draws a Scroll view with 2 buttons inside.
	// When clicked each button it moves the scroll
	// where the other button is located
	var scrollPos : Vector2 = Vector2.zero;
 
	function OnGUI () {
		scrollPos = GUI.BeginScrollView(Rect (10, 10, 100, 50), scrollPos, Rect (0, 0, 220, 10));
 
		if(GUI.Button (Rect (0,0,100,20), "Go Right"))
			GUI.ScrollTo(Rect (120,0,100,20));
 
		if(GUI.Button (Rect (120,0,100,20) , "Go Left"))
			GUI.ScrollTo(Rect (0,0,100,20));
 
		// End the scroll view that we began above.
		GUI.EndScrollView ();
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public Vector2 scrollPos = Vector2.zero;
    void OnGUI() {
        scrollPos = GUI.BeginScrollView(new Rect(10, 10, 100, 50), scrollPos, new Rect(0, 0, 220, 10));
        if (GUI.Button(new Rect(0, 0, 100, 20), "Go Right"))
            GUI.ScrollTo(new Rect(120, 0, 100, 20));
 
        if (GUI.Button(new Rect(120, 0, 100, 20), "Go Left"))
            GUI.ScrollTo(new Rect(0, 0, 100, 20));
 
        GUI.EndScrollView();
    }
}

gui

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文