NGUI: Next-Gen UI 2018.3.0f-程序员宅基地

NGUI: Next-Gen UI 2018.3.0f

https://assetstore.unity.com/packages/tools/gui/ngui-next-gen-ui-2413

 

NGUI is a very powerful UI system and event notification framework.

Features
- Editor integration, WYSIWYG
- Localization, data binding, delegates, events
- Supports all platforms
- Make UIs that take 1 draw call
- Comes with full C# source code
- Extensively optimized
- Dedicated support

2018.3.0
- NEW: As the name suggests, support for Unity 2018.3 and its new prefab workflow. Still supports previous versions, including Unity 5.6.
- NEW: NGUI's atlases and fonts are now saved as ScriptableObjects instead of prefabs. To upgrade, select any old prefab-based atlas or font, and the Upgrade button will show up. BACK UP FIRST just in case! After the new asset gets created, the old atlas or font will be changed to Reference type, pointing to it. You can use the new asset directly, of course -- and if you are Unity savvy enough, you can swap their GUIDs from the meta files, effectively removing the need for the reference asset altogether.
- NEW: Added a new widget type: Sprite Collection. It can be used to efficiently add thousands of sprites without the overhead of creating game objects. This is meant to be used from code by programmers, but can speed up the creation and modification of sprites by several orders of magnitude. In Sightseer it allowed the world map creation to go from 3348 ms down to 22 ms, for example.
- NEW: Added UITweener.Finish() to immediately finish the tween, skipping to the end.
- FIX: Some fixes for key binding text form serialization.


2018.3.0d:
- FIX: Fixed SpringPanel never finishing its operation.
- FIX: Fixed widget Depth not being visible on widget prefab instances in Unity 2018.3.
- FIX: Fixed an issue with reference fonts not picking up on referenced font's changes.
- FIX: Minor Unity 2018.3 tweaks.


2018.3.0e:
- FIX: Editing sprite border and padding on the atlas will now correctly mark the atlas as edited.
- FIX: Adjusting panel's alpha will now again work properly in edit time.


2018.3.0f
- NEW: Added a 'fixed aspect' option to the UISprite, matching 2D sprite and UI texture.
- FIX: Dynamic font's default scaling fix.
- FIX: Changing widget alpha should immediately update the scene view in edit mode again.
- FIX: "style not found" when examining the UILocalize component in Unity 2018.

 

 

 

扫码时备注或说明中留下邮箱

 

付款后如未回复请至https://shop135452397.taobao.com/

 

联系店主

 

posted on 2019-06-04 20:21 jiahuafu 阅读(...) 评论(...) 编辑 收藏

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/SilverFoxGame/article/details/91866796

智能推荐

Hanlp官网_hanlpcom 网站是做什么的-程序员宅基地

文章浏览阅读232次。HanLP.com开发者资源_hanlpcom 网站是做什么的

Unity调用Android遇到的奇葩问题-程序员宅基地

文章浏览阅读282次。因为项目需求,所以Android原生的aar包要用不同的包名打出来,这时候就遇到很多奇怪的问题,也不排除是unity版本问题,因为应客户要求,unity版本使用的是2017.4一.打包出来有两个启动项/闪退检查Android项目与unity项目中的所有包名是否一致,检查的地方主要有 :1.插件中的AndroidManifest.xml2.Player Setting -二..._unity plugins里shader打不进android包

【bzoj 1217】[HNOI2003]消防局的设立 贪心_.bzoj 1217: [hnoi2003]消防局的设立-程序员宅基地

文章浏览阅读984次。【bzoj 1217】[HNOI2003]消防局的设立 贪心_.bzoj 1217: [hnoi2003]消防局的设立

python 求s=a+aa+aaa+aaaa+aa...a的值_求s= a + aa + aaa + … + aa…a 的值python-程序员宅基地

文章浏览阅读3.7k次,点赞2次,收藏8次。#!/usr/bin/python# -*- coding: UTF-8 -*-a = int(input("a:"))b = int(input("b:"))s = []t = 0for i in range(0 , b): t = t + a a = a * 10 s.append(t) # print(t)s = sum(s)print(s)_求s= a + aa + aaa + … + aa…a 的值python

KEIL MDK平台 S3C2440 汇编语言软件仿真_keil5 s3c2440 汇编代码-程序员宅基地

文章浏览阅读660次。KEIL MDK平台 S3C2440 汇编语言软件仿真的上机过程KEIL MDK平台 S3C2440 汇编语言软件仿真的上机过程建立工程,编辑汇编语言程序编译链接源程序调试KEIL MDK平台 S3C2440 汇编语言软件仿真的上机过程本系列博文将从软件仿真开始一步步介绍KEIL MDK平台 S3C2440汇编/c语言程序的编辑、编译、链接、调试过程,以及建立裸机程序、移植ucos操作系统、移植ucGUI的全过程。本帖将介绍基于KEIL MDK平台 S3C2440 汇编语言软件仿真的上机过程。包括汇编_keil5 s3c2440 汇编代码

Java零基础学习-----JAVA核心类库(上)(三)-程序员宅基地

文章浏览阅读97次。正则表达式正则表达式概念:正则表达式本质就是一个“规则字符串”,可以用于对字符串数据的格式进行验证,以及匹配、查 找、替换等操作。该字符串通常使用^运算符作为开头标志,使用$运算符作为结尾标志,当然也可以省 略。正则表达式规则:正则表达式规则:可变字符串类可变字符串类的基本概念1.由于String类描述的字符串内容是个常量不可改变,当需要在java代码中描述大量类似的字符串是,只能单独申请和存储,此时会造成内存空间的浪...

随便推点

HDU 4513 吉哥系列故事 完美队形II (manacher)-程序员宅基地

文章浏览阅读307次。题意: N<=105的串,求最长回文串,并且左边的部分是不降的N<=10^5的串, 求最长回文串, 并且左边的部分是不降的分析: 计算p数组的时候判断一下就好了,−−注意′#′计算p数组的时候判断一下就好了, - - 注意'\#'代码://// Created by TaoSama on 2015-11-03// Copyright (c) 2015 TaoSama. All r

关于Larvel/Lumen 运行Vue项目出现“please provide a valid cache path”问题的解决办法_invalidargumentexception: please provide a valid c-程序员宅基地

文章浏览阅读551次。Larvel/Lumen 运行Vue项目出现“please provide a valid cache path”问题的解决办法在运行公司项目的时候登录页面出现以下报错please provide a valid cache path错误提示的出错位置:// vendor/illuminate/view/Compilers/Compiler.phpif (! $cachePath) {..._invalidargumentexception: please provide a valid cache path. in file

stm32f429 利用stm32cube配置FMC接口_stm32f429 fmcclk fmcsdclk-程序员宅基地

文章浏览阅读7.7k次,点赞5次,收藏53次。目录一、为什么使用SDRAM二、SDRAM芯片W9825G6KH三、stm32f4的fmc接口四、stm32cubemx配置fmc五、实验现象:六、源码:七、注意事项:八、参考记录:硬件平台:正点原子阿波罗stm32f429一、为什么使用SDRAMSTM32控制器芯片内部有一定大小的SRAM及FLASH作为内存和程序存储空间,但当程序较大,内存和程序空间..._stm32f429 fmcclk fmcsdclk

手把手教你撸一个网页聊天室-程序员宅基地

文章浏览阅读1.6k次。一些废话:)最近在学校比较闲,终于有这么一块时间可以自由支配了,所以内心还是十分的酸爽舒畅的。当然了,罪恶的事情也是有的,比如已经连续一周没有吃早饭了,其实现在回头想想,真的不能怪我啊,因为最近的天气实在是太!冷!了!好吧为了减少赖床的罪恶感,还是学(gǎo)点(diǎn)东(shì)西(qing)好了。不说废话了,还是进入正题。进入..._撸管聊天室

第(i, j)项为cos( (j-1) * x_i )的n阶行列式的求解_temxyz(1,j,i)=cos((j-1)*2*pi/ntem)*rtem-程序员宅基地

文章浏览阅读184次。本文借助De Moivre公式、二项式定理的思想,借助行列式运算的一些基本性质求解一道含有三角函数cos的n阶行列式问题。_temxyz(1,j,i)=cos((j-1)*2*pi/ntem)*rtem

C++ cout格式化输出(超级详细)_c++ cout 浮点数-程序员宅基地

文章浏览阅读1.3w次,点赞21次,收藏103次。C++ cout格式化输出(超级详细)在某些实际场景中,我们经常需要按照一定的格式输出数据,比如输出浮点数时保留 2 位小数,再比如以十六进制的形式输出整数,等等。对于学过 C 语言的读者应该知道,当使用 printf() 函数输出数据时,可以通过设定一些合理的格式控制符,来达到以指定格式输出数据的目的。例如 %.2f 表示输出浮点数时保留 2 位小数,%#X 表示以十六进制、带 0X 前缀的方式输出整数。C++ 通常使用 cout 输出数据,和 printf() 函数相比,cout 实现格式化输出数_c++ cout 浮点数

推荐文章

热门文章

相关标签