- backgroundColor
- BeginGroup
- BeginScrollView
- Box
- BringWindowToBack
- BringWindowToFront
- Button
- changed
- color
- contentColor
- depth
- DragWindow
- DrawTexture
- enabled
- EndGroup
- EndScrollView
- FocusControl
- FocusWindow
- GetNameOfFocusedControl
- GUI
- HorizontalScrollbar
- HorizontalSlider
- Label
- matrix
- PasswordField
- RepeatButton
- ScrollTo
- SelectionGrid
- SetNextControlName
- skin
- TextArea
- TextField
- Toggle
- Toolbar
- tooltip
- UnfocusWindow
- VerticalScrollbar
- VerticalSlider
- Window
GUI.VerticalScrollbar 垂直滚动条
static function VerticalScrollbar (position : Rect, value : float, size : float, topValue : float, bottomValue : float, style : GUIStyle) : float
Parameters参数
- positionRectangle on the screen to use for the scrollbar.
用于滚动条在屏幕上矩形的位置。 - valueThe position between min and max
在min和max之间的位置 - sizeHow much can we see?
我们能看到多大 - topValueThe value at the left end of the scrollbar
滚动条最顶部的值 - bottomValueThe value at the right end of the scrollbar
滚动条最底部的值 - styleThe style to use for the scrollbar background. If left out, the VerticalScrollbar style from the current GUISkin is used.
用于滚动条背景的样式,如果不设置,垂直滚动条样式应用当前的GUISkin皮肤
Returns
float - the modified value. This can be changed by the user by dragging the scrollbar, or clicking the arrows at the end.
返回float类型,被修改值。这能通过用户拖动滚动条,或点击滚动条上的箭头来改变值。
Description描述
Make a vertiical scrollbar. Scrollbars are what you use to scroll through a document. Most likely, you want to use scrollViews instead.
创建垂直滚动条。滚动条是能通过滚动来浏览文档,大多数情况下,你可以使用scrollView代替。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public float vSbarValue;
void OnGUI() {
vSbarValue = GUI.VerticalScrollbar (new Rect(25, 25, 100, 30), vSbarValue, 1.0F, 10.0F, 0.0F);
}
}
var vSbarValue : float;
function OnGUI () {
vSbarValue = GUI.VerticalScrollbar (Rect (25, 25, 100, 30), vSbarValue, 1.0, 10.0, 0.0);
}
Finding extra elements 查找额外的元素:
The styles of the buttons at then end of the scrollbar are searched for in the current skin by adding "upbutton" and "downbutton" to the style name. The name of the scrollbar thumb (the thing you drag) is found by appending "thumb" to the style name.
滚动条两端的按钮的样式是在当前皮肤中搜索 "upbutton"和"downbutton"样式名字确定。滚动条滑块的样式是搜索 "thumb"的样式名。
var scrollPos : float = 0.5; // This will use the following style names to determine the size / placement of the buttons //这将使用跟随的样式名字来确定按钮的大小/ 放置 // MyVerticalScrollbarupbutton - Name of style used for the up button. // MyVerticalScrollbarupbutton - 用于上部按钮的样式名字 // MyVerticalScrollbardownbutton - Name of style used for the down button. // MyVerticalScrollbardownbutton - 用于底部按钮的样式名字 // MyVerticalScrollbarthumb - Name of style used for the draggable thumb. // MyVerticalScrollbarthumb - 用于拖动滑块的样式名字 function OnGUI() { scrollPos = GUI.VerticalScrollbar (Rect(0,0,100,20), scrollPos, 1, 0, 100, "Scroll"); }