FairyGUI-layabox icon indicating copy to clipboard operation
FairyGUI-layabox copied to clipboard

A flexible UI framework for LayaAir

Results 27 FairyGUI-layabox issues
Sort by recently updated
recently updated
newest added

1.修复 combobox 在数据的时候没有默认选中的问题 2.添加监听GLoader3D加载完成

'width' is defined as an accessor in class 'Sprite', but is overridden here in 'Image' as an instance property.ts(2610)

source/src/fairygui/utils/ToolSet.ts:152 取消变灰的时候没有重置标志, 所以在变灰过之后只要有变色操作(比如按下变暗)就会又变成灰色

我在QQ浏览器调整正常。但谷歌浏览器显示不有点偏移 QQ浏览器 ![image](https://user-images.githubusercontent.com/2868766/116784326-4272d300-aac6-11eb-9304-7628382dcca6.png) 谷歌浏览器 ![image](https://user-images.githubusercontent.com/2868766/116784311-31c25d00-aac6-11eb-8fd6-246aa6a46326.png)

2.10.0版本 ![image](https://user-images.githubusercontent.com/2868766/116066571-c7bb4980-a6ba-11eb-8fef-dba296965d86.png) 2.7.3版本 ![image](https://user-images.githubusercontent.com/2868766/116066519-bd994b00-a6ba-11eb-9f8b-2fba96889114.png) fgui ![image](https://user-images.githubusercontent.com/2868766/116066993-49ab7280-a6bb-11eb-81a3-aaf0de094bbe.png) ![image](https://user-images.githubusercontent.com/2868766/116067086-6647aa80-a6bb-11eb-84c1-bf3b2ef3946a.png) 另外每个版本的文本,浏览器效果与fgui显示的y轴总是相差2-3个像素 仅仅使用LayaIDE切换了版本库

RT. ![QQ截图20210108171235](https://user-images.githubusercontent.com/2215019/103996479-ddbd0100-51d4-11eb-85cd-b0b72a2905a8.jpg) ![QQ截图20210108171335](https://user-images.githubusercontent.com/2215019/103996485-e01f5b00-51d4-11eb-9ae0-3967064e2500.jpg)

Hi, I am having a few issues with layabox and fairy GUI with responsiveness. The UI doesn't seem to scale properly when resized. The game is currently in "fixedHeight' mode,...

I have a FairyGUI project that uses a font (Changa One). I have it in both .ttf and .woff formats. When I publish to Laya, the font isn't published with...

问题描述: 1.虚列表中的item是GLoader; 2.GLoader需要从网络中加载不同的图片; 3.虚列表的列表布局为竖向流动,溢出处理为水平滚动,且列表元素数量超过一屏; 4.在图片被加载之前(网络原因导致图片下载较慢),滚动虚列表多次,则会出现这个现象:存在一部分item,他们的GLoader的url不同,却显示相同的图片。 5.滑动虚列表后,原来图片显示异常的item恢复正常。 原因分析: 在网络图片被加载之前,多次滑动虚列表,会给同一个item,添加多个回调函数,而这些回调函数带来的texture,其url是不同的。所以出现上述问题。 解决办法: 修改farirygui源码,在GLoader.onExternalLoadSuccess(texture)的开始处,判断GLoader的url与传入的texture的url是否相同,如果不同,则直接跳出该方法。 可以使用更优雅的解决办法,在执行GLoader.loadExternal()时,先清除旧的回调函数,然后再添加新的回调。但经过跟踪调试,未在对应的laya库中,找到清除旧回调函数的有效方法。