返回介绍

GUI.VerticalSlider 垂直滑条

发布于 2019-12-18 15:37:46 字数 2679 浏览 1360 评论 0 收藏 0

JavaScript => public static function VerticalSlider(position: Rect, value: float, topValue: float, bottomValue: float): float;
JavaScript => public static function VerticalSlider(position: Rect, value: float, topValue: float, bottomValue: float, slider: GUIStyle, thumb: GUIStyle): float;

C# => public static float VerticalSlider(Rect position, float value, float topValue, float bottomValue);
C# => public static float VerticalSlider(Rect position, float value, float topValue, float bottomValue, GUIStyle slider, GUIStyle thumb);

Parameters 参数

positionRectangle on the screen to use for the slider.
滑条在屏幕上的矩形位置。
valueThe value the slider shows. This determines the position of the draggable thumb.
滑条显示的值。这决定拖动翻阅的位置。
topValueThe value at the top end of the slider.
滑条结束时的顶部的值。
bottomValueThe value at the bottom end of the slider.
sliderThe GUIStyle to use for displaying the dragging area. If left out, the horizontalSlider style from the current GUISkin is used.
在拖动区域的显示使用的GUI格式。如果丢失,当前GUISkin的horizontalSlider格式被使用。
thumbThe GUIStyle to use for displaying draggable thumb. If left out, the horizontalSliderThumb style from the current GUISkin is used.
在翻阅区域的显示使用的GUI格式。如果丢失,当前GUISkin的horizontalSlider格式被使用。

Returns

float The value that has been set by the user.
用户设置的值。

Description 描述

A vertical slider the user can drag to change a value between a min and a max.

垂直滑条指用户可以在最小和最大值之间拖动或者改变。

JavaScript:

	// Draws a vertical slider control that goes from  10 (top) to 0 (bottom)
	var vSliderValue : float = 0.0;
 
	function OnGUI () {
		vSliderValue = GUI.VerticalSlider (Rect (25, 25, 100, 30), vSliderValue, 10.0, 0.0);
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public float vSliderValue = 0.0F;
    void OnGUI() {
        vSliderValue = GUI.VerticalSlider(new Rect(25, 25, 100, 30), vSliderValue, 10.0F, 0.0F);
    }
}

gui

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

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

发布评论

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