NGUI: Documentation
Video Tutorials
- Basic Tutorial (v.2.5.0+)
- SD & HD atlas switching (advanced)
- Packed Font (advanced)
- Catering to variable screen size
Old Tutorials (Earlier than NGUI 2.5.0)
- Part 1 – Basics (old)
- Part 2 – Advanced (old)
- Atlas Maker, Font Maker (old)
Other Videos
Step-by-step Tutorials
For the sake of these tutorials, I will assume that you already have the NGUI package installed in your project (or are in a brand-new one). I will also assume that you don’t just want to learn how to go from point A to point B, but also why you’re going there. I’ll try my best to explain the steps carefully, paying attention to everything that you will see along the way.
Let’s start by creating a brand new scene. The most basic UI is a 2D one, so we’ll start with that and work our way up.
- Step 1: Creating Your UI
- Step 2: Sprite
- Step 3: 9-Sliced Sprite
- Step 4: Tiled Sprite
- Step 5: Label
- Step 6: Button
- Step 7: Slider
- Step 8: Checkbox
- Step 9: Input
- Step 10: 3D
- Step 11: Popup List
这是中文版教程,感谢Minevr友情翻译:
Provided Examples
- UIAnchor(writeup)
- Interaction (writeup)
- Main Menu
- Controller Input
- Lights and Refraction (writeup)
- Draggable Window (writeup)
- Scroll View (clipped panel) (writeup)
- Scroll View (secondary camera) (writeup)
- Fancy Quest Log
- Localization
- Drag & Drop
- Chat Window (writeup)
- Character Inventory (writeup)
Script Documentation
Found here: http://www.tasharen.com/ngui/docs/
List of Core Components
- Camera– Should be attached to each camera, contains the event system
- Atlas– Texture atlas defining sprites
- Font– Font atlas
- Sprite– Widget that draws a sprite from the texture atlas
- Label– Widget that draws a text label using the specified font
- Panel– Manages a group of widgets and is responsible for creating the actual draw calls
- Anchor– Can be used to anchor widgets to the sides of the screen, stretch them to fill the screen, and make pixel-perfect UIs.
- Looking for more? Check the script documentation.
NGUI comes with a powerful event system that can be used with or without the rest of the kit, allowing your objects to receive most of the commonly used events such as OnHover, OnClick, OnDrag, etc without having components derive from any specific base class.
Some Other Notable Components and Tools
- UIButtonPlayAnimation — Event receiver that lets you start a remote animation.
- UIButtonTween — Event receiver that lets you start one or more remote tween scripts.
- UICheckbox — Script that can be used to create checkboxes, radio buttons, toggle buttons, and combo boxes.
- UICheckboxControlled — Very short and to-the-point scripts that let your checkboxes directly control the enabled state of remote scripts and game objects.
- UIDragObject — This script makes it easy to drag something around — whether it’s a window or a 3D object.
- UIPanelTool — Alt+Shift+P brings up this dockable window that should help you when working with a scene that has many panels in it.
- Looking for more? Check the script documentation.
NGUI: Documentation的更多相关文章
- unity的坑
http://dearymz.blog.163.com/blog/static/20565742013341916919/ 编辑器: Hierarchy窗口中是场景中的Game Object列表 Pr ...
- NGUI学习笔记(一)UILabel介绍
来个前言: 作为一个U3D程序员,自然要写一写U3D相关的内容了.想来想去还是从UI开始搞起,可能这也是最直观同时也最重要的部分之一了.U3D自带的UI系统,也许略坑,也没有太多介绍的价值,那么从今天 ...
- NGUI裁剪模型和粒子
效果预览 注:Cube上附着的绿色是我添加的粒子效果. 软件环境 NGUI 3.9.x Unity 5.1 x64 相关知识 RenderTexture RenderTexture是一种特殊的纹理,它 ...
- Unity NGUI添加UIRoot
导入NGUI包后,菜单多出一个选项 "NGUI",选择其子选项 "options" -- "Reset Prefab ToolBar" ,在 ...
- NGUI之UIRoot——屏幕的自适应分辨率的计算
//原来写在其他博客上的东西,搬迁 预备知识: 要明确的三个概念: 设计分辨率:在编辑器上开发UI使用的分辨率.我们所有的UI都是在这个分辨率下设计制作的. 显示区域分辨率:设备上所显示的UI区域在编 ...
- Shader实例:NGUI制作网格样式血条
效果: 思路: 1.算出正确的uv去采样过滤图,上一篇文章说的很明白了.Shader实例:NGUI图集中的UISprite正确使用Shader的方法 2.用当前血量占总血量的百分比来设置shader中 ...
- Shader实例:NGUI图集中的UISprite正确使用Shader的方法
效果: 变灰,过滤,流光 都是UI上常用效果. 比如: 1.按钮禁用时,变灰. 2.一张Icon要应付圆形背景框,又要应付矩形背景框.就要使用过滤的方式来裁剪. 避免了美术提供两张icon的麻烦,又节 ...
- OpenCASCADE Documentation System
OpenCASCADE Documentation System eryar@163.com Abstract. Doxygen is the de facto standard tool for g ...
- NGUI 指定视口大小
由于只是给Uinty开发插件,对Unity没有系统的学习,对Unity的很多功能都不是非常了解,幸得其他Unity同事的耐心教导,才不至于想崩头.记录一下,避免重复犯错. NGUI可以建立指定视口大小 ...
随机推荐
- JavaScript 高级程序设计(第3版)笔记——chapter4:变量、作用域和内存问题
Chapter4 变量.作用域和内存问题 l 理解基本类型和引用类型的值 l 理解执行环境 l 理解垃圾收集 4.1基本类型和引用类型的值 l ECMAScript变量包含两种不同数据类型的值 ...
- C#自学笔记总结
一.变量:声明变量的语法:变量类型 变量名; 变量名=值;变量类型 变量名=值: 在使用变量的时候要注意:变量一定要先声明,再赋值,最后使用例子: 变量的特点:1.不能够被重复的声明2.可以被重复的赋 ...
- c++,static 静态成员变量 / 静态成员函数
静态成员变量: //静态成员变量(static) // //1.如果想在同类的多个对象之间实现数据共享 ,可以用静态 //成员变量,即用static修饰的成员变量,例 static int a; // ...
- ContentProvider中的数据生成时机
目录结构: , 先给个结论: 仅仅是实例化mySqliteHelper()这个类的时候是不会创建数据库的,实际上数据库的真正创建是在helper.getWritableDatabase()的方法执行后 ...
- Js 30 BOM
小知识点, 1.document.write()方法: 如果document.write()在一个事件中或window.onload=function(){}这个function里, 那么docume ...
- 从陌陌上市看BAT的移动保卫战(转)
12 月 11 日,陌陌正式登陆纳斯达克,这件事除了证明了移动互联网“没有什么不可能之外”,对 BAT 而言,更大的意义在于需要时刻警惕还有没有其它细分领域的公司能够在自己核心业务领域溜出来. 两年前 ...
- Citrix XenApp6.5 另类发布文档
快捷方式.文档发布 第一种方式: 1. 创建快捷方式 2. 创建批处理文件(例如:lnk.bat),并输入以下内容: Start c:\users\public\desktop\adobe ...
- partial_sort_百度百科
partial_sort_百度百科 partial_sort
- 另外一种方式装win2008r2
装系统有很多方法,但是这种,我很少用. 注意第二个红圈处,是要启动的电话引导盘符.容易选择你的启动U盘,如果是后者,表现出的结果就是引导U盘不能引导,且安装的电脑也会显示ntdl丢失.当然,也可以解决 ...
- 使用SHA1、SHA2双证书进行微软数字签名
微软是第一个宣布了SHA-1弃用计划,在2016年之后Windows和IE将不再信任SHA-1证书.正好我们公司的数字签名也到期了,索性就重新申请了sha256和sha1的新数字证书,用来给产品签名. ...