Unity学习笔记(4) --- Unity的界面排版:初识GUI
GUI和GUILayout是Unity提供的UIKit。在使用GUI的Controls时都要求设置Rect參数。没办法做到自己主动排版,给适配带来难度。而GUILayout的设计就是为了弥补这个缺陷,GUILayout是在GUI的基础之上复合了一套Layout的排版逻辑。
GUI
class in UnityEngine
Description
The GUI class is the interface for Unity's GUI with manual positioning.
See Also: GUI tutorial.
Static Variables
backgroundColor
Global tinting color for all background elements rendered by the GUI.
changed
Returns true if any controls changed the value of the input data.
color
Global tinting color for the GUI.
contentColor
Tinting color for all text rendered by the GUI.
depth
The sorting depth of the currently executing GUI behaviour.
enabled
Is the GUI enabled?
matrix
The GUI transform matrix.
skin
The global skin to use.
tooltip
The tooltip of the control the mouse is currently over, or which has keyboard focus. (Read Only).
Static Functions
BeginGroup
Begin a group. Must be matched with a call to EndGroup.
BeginScrollView
Begin a scrolling view inside your GUI.
Box
Make a graphical box.
BringWindowToBack
Bring a specific window to back of the floating windows.
BringWindowToFront
Bring a specific window to front of the floating windows.
Button
Make a single press button. The user clicks them and something happens immediately.
DragWindow
Make a window draggable.
DrawTexture
Draw a texture within a rectangle.
DrawTextureWithTexCoords
Draw a texture within a rectangle with the given texture coordinates. Use this function for clipping or tiling the image within the given rectangle.
EndGroup
End a group.
EndScrollView
Ends a scrollview started with a call to BeginScrollView.
FocusControl
Move keyboard focus to a named control.
FocusWindow
Make a window become the active window.
GetNameOfFocusedControl
Get the name of named control that has focus.
HorizontalScrollbar
Make a horizontal scrollbar. Scrollbars are what you use to scroll through a document. Most likely, you want to use scrollViews instead.
HorizontalSlider
A horizontal slider the user can drag to change a value between a min and a max.
Label
Make a text or texture label on screen.
ModalWindow
Show a Modal Window.
PasswordField
Make a text field where the user can enter a password.
RepeatButton
Make a button that is active as long as the user holds it down.
ScrollTo
Scrolls all enclosing scrollviews so they try to make position visible.
SelectionGrid
Make a grid of buttons.
SetNextControlName
Set the name of the next control.
TextArea
Make a Multi-line text area where the user can edit a string.
TextField
Make a single-line text field where the user can edit a string.
Toggle
Make an on/off toggle button.
Toolbar
Make a toolbar.
UnfocusWindow
Remove focus from all windows.
VerticalScrollbar
Make a vertical scrollbar. Scrollbars are what you use to scroll through a document. Most likely, you want to use scrollViews instead.
VerticalSlider
A vertical slider the user can drag to change a value between a min and a max.
Window
Make a popup window.
Delegates
WindowFunction
Callback to draw GUI within a window (used with GUI.Window).
GUI和GUILayout是Unity提供的UIKit。在使用GUI的Controls时都要求设置Rect參数。没办法做到自己主动排版,给适配带来难度。而GUILayout的设计就是为了弥补这个缺陷,GUILayout是在GUI的基础之上复合了一套Layout的排版逻辑。
GUI
class in UnityEngine
Description
The GUI class is the interface for Unity's GUI with manual positioning.
See Also: GUI tutorial.
Static Variables
| backgroundColor | Global tinting color for all background elements rendered by the GUI. |
| changed | Returns true if any controls changed the value of the input data. |
| color | Global tinting color for the GUI. |
| contentColor | Tinting color for all text rendered by the GUI. |
| depth | The sorting depth of the currently executing GUI behaviour. |
| enabled | Is the GUI enabled? |
| matrix | The GUI transform matrix. |
| skin | The global skin to use. |
| tooltip | The tooltip of the control the mouse is currently over, or which has keyboard focus. (Read Only). |
Static Functions
| BeginGroup | Begin a group. Must be matched with a call to EndGroup. |
| BeginScrollView | Begin a scrolling view inside your GUI. |
| Box | Make a graphical box. |
| BringWindowToBack | Bring a specific window to back of the floating windows. |
| BringWindowToFront | Bring a specific window to front of the floating windows. |
| Button | Make a single press button. The user clicks them and something happens immediately. |
| DragWindow | Make a window draggable. |
| DrawTexture | Draw a texture within a rectangle. |
| DrawTextureWithTexCoords | Draw a texture within a rectangle with the given texture coordinates. Use this function for clipping or tiling the image within the given rectangle. |
| EndGroup | End a group. |
| EndScrollView | Ends a scrollview started with a call to BeginScrollView. |
| FocusControl | Move keyboard focus to a named control. |
| FocusWindow | Make a window become the active window. |
| GetNameOfFocusedControl | Get the name of named control that has focus. |
| HorizontalScrollbar | Make a horizontal scrollbar. Scrollbars are what you use to scroll through a document. Most likely, you want to use scrollViews instead. |
| HorizontalSlider | A horizontal slider the user can drag to change a value between a min and a max. |
| Label | Make a text or texture label on screen. |
| ModalWindow | Show a Modal Window. |
| PasswordField | Make a text field where the user can enter a password. |
| RepeatButton | Make a button that is active as long as the user holds it down. |
| ScrollTo | Scrolls all enclosing scrollviews so they try to make position visible. |
| SelectionGrid | Make a grid of buttons. |
| SetNextControlName | Set the name of the next control. |
| TextArea | Make a Multi-line text area where the user can edit a string. |
| TextField | Make a single-line text field where the user can edit a string. |
| Toggle | Make an on/off toggle button. |
| Toolbar | Make a toolbar. |
| UnfocusWindow | Remove focus from all windows. |
| VerticalScrollbar | Make a vertical scrollbar. Scrollbars are what you use to scroll through a document. Most likely, you want to use scrollViews instead. |
| VerticalSlider | A vertical slider the user can drag to change a value between a min and a max. |
| Window | Make a popup window. |
Delegates
| WindowFunction | Callback to draw GUI within a window (used with GUI.Window). |
Unity学习笔记(4) --- Unity的界面排版:初识GUI的更多相关文章
- 我的Unity学习笔记之——Unity中从网站下载ab资源+下载存储一条龙
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Net ...
- 微软企业库Unity学习笔记
本文主要介绍: 关于Unity container配置,注册映射关系.类型,单实例.已存在对象和指出一些container的基本配置,这只是我关于Unity的学习心得和笔记,希望能够大家多交流相互学习 ...
- Unity3D学习笔记3——Unity Shader的初步使用
目录 1. 概述 2. 详论 2.1. 创建材质 2.2. 着色器 2.2.1. 名称 2.2.2. 属性 2.2.3. SubShader 2.2.3.1. 标签(Tags) 2.2.3.2. 渲染 ...
- Unity学习笔记(3):获取对象
在上一篇文章中(Unity映射注册)中概要介绍了Unity中的映射机制,本节主要介绍对象获取,包括默认获取,通过名称获取,获取全部对象,同时通过加载配置文件,然后再获取对象. 通过代码获取对象 方式1 ...
- Unity学习笔记(2):注册映射
在上一篇文章中(认识Unity)中概要介绍了Unity和Ioc,本节主要介绍IoC中的注册映射,并使用代码和配置文件两种方式进行说明. 定义依赖注入相关信息 定义ILogger接口 public in ...
- Unity学习笔记(1):认识Unity
Unity是什么? Unity是patterns & practices团队开发的一个轻量级.可扩展的依赖注入容器,具有如下的特性: 它提供了创建(或者装配)对象实例的机制,而这些对象实例可能 ...
- Digital Tutors - Creating an Action Adventure Puzzle in Unity学习笔记
遇到的问题: 1 第11节Scripting the pressure plates中需要获取子物体的Animator组件,教程使用的语句如下: ”SwitchAnim = GetComponentI ...
- (转载)Unity学习笔记:关于Dropdown的学习
今天组长让我写一个界面,其中用到了下拉条,我的印象还停留在以前的NGUI有现成的组件,但是uGUI没有的那阶段,组长跟我说uGUI现在也有了,研究了一下,发现real方便哦,今天就来简单说一下用法吧. ...
- Egret3D学习笔记一 (Unity插件使用)
一 官方教程: http://developer.egret.com/cn/github/egret-docs/Engine3D/getStarted/getStarted/index.html 大部 ...
随机推荐
- XAMPP--Apache服务无法启动问题定位及处理
一.问题简述: XAMPP 在使用一段时间后,Apache服务无法启动. 二.详细描述: 安装Xampp服务器套件之后,部署使用正常.一段时间未使用,再次打开时,Apache服务无法启动.错误提示如下 ...
- Verification Mind Games---how to think like a verifier像验证工程师一样思考
1. 有效的验证需要验证工程师使用不同于设计者的思维方式思考问题.具体来说,验证更加关心在严格遵循协议的基础上发现设计里面的bug,搜索corner cases,对设计的不一致要保持零容忍的态度. m ...
- jQuery.fn.extend和jQuery.extend
<script src="http://www.cssrain.cn/demo/JQuery+API/jquery-1[1].2.1.pack.js" type=" ...
- ThinkPHP---thinkphp框架介绍
目录: (1)简述: (2)下载: (3)文件结构: (4)部署: (5)细节问题: 主体: (1)简述 ThinkPHP诞生于2006年初,最初叫FSC.于2007年元旦更名为PHP,同时官网上线. ...
- 【Redis】四、Redis设计原理及相关问题
(六)Redis设计原理及相关问题 通过前面关于Redis五种数据类型.相关高级特性以及一些简单示例的使用,对Redis的使用和主要的用途应该有所掌握,但是还有一些原理性的问题我们在本部分做一个探 ...
- 顶点的度 (20 分) Java解法
顶点的度 顶点的图.给定一个有向图,输出各顶点的出度和入度. 输入格式: 输入文件中包含多个测试数据,每个测试数据描述了一个无权有向图.每个测试数据的第一行为两个正整数n 和m,1 ≤ n ≤ 100 ...
- cgroup代码浅析(1)
前置:这里使用的linux版本是4.8,x86体系. cgroup_init_early(); 聊这个函数就需要先了解cgroup. cgroup概念 这个函数就是初始化cgroup所需要的参数的.c ...
- ArrayList经典Demo
import java.util.ArrayList; import java.util.Iterator; public class ArrayListDemo { public static vo ...
- java面试题链接
http://blog.csdn.net/jackfrued/article/details/17339393
- Re0:DP学习之路 数塔 HDU - 2084(基础递推)
解法 首先是输入的问题,输入的时候还要注意每一层都有多少个 然后是怎么求解,一般求解首先要考虑顺序,是正序还是倒序 如果这个题是正序的话那么最终还需要将最后一行进行一次找max的运算 如果是倒序的话那 ...