大约有 190 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0035 秒)
Sprite对象中的scrollRect如何使用?为什么是undefined 2017-05-26 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 cuixueying 赞同来自: 你的代码看不出什么问题,而且我测试也是正常...
来源: Laya_社区 发布时间: 20170526
ScrollRect设置会引起其他的UI资源无法正在显示 我用的版本是1.7.9package { import laya.display.Node; import laya.display.Sprite; import laya.maths.Rectangle; import laya.ui.Image; import laya.utils.Handler; import ui.TestViewUI; public class TestView extends TestViewUI { private ...
来源: Laya_社区 发布时间: 20171113
scrollRect 改变后子对象的鼠标事件失效 bg=new Laya.Sprite(); Laya.stage.addChild(bg); bg.size(800,600); bg.loadImage("aa_1.Png",0,0,800,600); poly=new Laya.Sprite(); bg.addChild(poly); poly.size(36,36); poly.pivot(18,18); poly.loadImage("SafeExitL.png",0,0,36,36); poly.pos(400,300); pol...
来源: Laya_社区 发布时间: 20180823
...rr,_path); SetPathArr(arr2,_path2); //注释下面这行就正常了 _path.scrollRect = new Rectangle(0,0,(len-3)*PATH_LEN-30,58); _path2.scrollRect = new Rectangle(0,0,(len-3)*PATH_LEN-30,58); //_path.viewPort = new Rectangle(0,0,(len-3)*PATH_LEN-30,58); btn_start.clickHandler = new Handler(this,St...
来源: Laya_社区 发布时间: 20171129
...更高)。 2.设置rect的x,y属性均能实现区域滚动效果,但scrollRect会保持0,0点位置不变。 2017-03-23 0 4 分享 微博 QZONE 微信 jacksing888 赞同来自: var Browser = Laya.Browser; var Stage = Laya.Stage; var WebGL = Laya.WebGL; var Rectang...
来源: Laya_社区 发布时间: 20170323
... tRec = _cacheStyle.cacheRect; if (sprite._style.scrollRect) { var scrollRect = sprite._style.scrollRect; tRec.x -= scrollRect.x; tRec.y -= scrollRect.y; } CacheStyle...
来源: Laya_社区 发布时间: 20210615
scrollrect的bug? 一个sprite设置了 scrollRect 并且sprite的孩子超出了可视区域 这时候设置sprite的pivot 的时候 出现了显示异常 2017-03-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回...
来源: Laya_社区 发布时间: 20170329
...。Node numChildren : int[read-only] 子对象数量。 Node optimizeScrollRect : Boolean 指定是否对使用了 scrollRect 的显示对象进行优化处理。默认为false(不优化)。 当值为ture时:将对此对象使用了scrollRect 设定的显示区域以外的显示内容不进行...
来源: laya_api 发布时间: 20170929
...r的init函数中 如果设置viewport,显示区域变黑 如果设置scrollRect,正常显示 // this.viewport = new Rectangle(0, 0, Laya.stage.width, Laya.stage.height); this.scrollRect = new Rectangle(0, 0, Laya.stage.width, Laya.s...
来源: Laya_社区 发布时间: 20170418
...:laya.display.Sprite = new laya.display.Sprite; con1.addChild(con); // con.scrollRect = new laya.maths.Rectangle(200,200,500,500); con.x = con.y = -200; var sp:laya.display.Sprite = new laya.display.Sprite; con.addChild(sp); sp.x = 250; sp.y = 300; sp.graphics.drawRect(-50,-100,100,100,"#ff0000"); s...
来源: Laya_社区 发布时间: 20180106