大约有 373 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0049 秒)
Laya_社区(156) Laya3.0_api(70) Laya2.0_api(62) laya_api(59) Laya_示例(9) Laya2.0_文档(8) Laya2.0_示例(7) Laya3.0_文档(2)
...a_Aaron 赞同来自: zd1fr5g55 、Barry Allen GuideLayer. scrollcet = new Rectangle(0,0,屏幕宽(舞台宽高也可以),屏幕高) 限制一下试试,有问题再及时反馈 2017-12-22 2 1 分享 微博 QZONE 微信 宇智波 旋 赞同来自: leesson 已经9102年了 laya还没有解...
来源: Laya_社区 发布时间: 20171222
...= new TiledMap(); tiledMap.createMap("../res/dt.json", new Rectangle(0, 0, Laya.stage.width, Laya.stage.height), null); 调用后报错TypeError: Cannot read property 'split' of undefined at TiledMap.__proto.mergePath (file:///C:/Users/Administrator/Documents/myLaya/Hello/bi...
来源: Laya_社区 发布时间: 20181026
...tArray){ if (!this._$P.mHtmlBounds)this._set$P("mHtmlBounds",new Rectangle()); var tRectangle=this._$P.mHtmlBounds; tRectangle.x=tRectangle.y=0; tRectangle.width=this.contextWidth=tArray[0]; tRectangle.height=this.contextHeight=tArray[1]; this.setBounds(tRectangle); //我自己添加的部...
来源: Laya_社区 发布时间: 20180104
...t = height; content._style.scrollRect || (content.scrollRect = Rectangle.create()); content._style.scrollRect.setTo(rectX, rectY, width, height); content.scrollRect = content.scrollRect; } 附件 : --> Bug文本.zip 2021-11-08 添加评论 免费帖 --> 分...
来源: Laya_社区 发布时间: 20211108
...完全不依赖于这个,如果需要width和height, new window.Laya.Rectangle(0, 0, this.img_width, this.img_height, '#FF0000'), 然后设置sprite.hitArea = rect. 但是这个其实很弱。 首先,这个rect不会随着图片的旋转而旋转,所以要做精细的碰撞检测得自己...
来源: Laya_社区 发布时间: 20180530
...ass:1, restitution:0.8, layaSprite: sprite}; var role: any = Matter.Bodies.rectangle(180, 450, 334, 522, roleOptions); 代码类似这样的:sprite是我传入的图片,要怎么改变这张图片的大小? 2018-08-27 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...
来源: Laya_社区 发布时间: 20180827
...rtarget太大了 可以这样限制一下 guideContainer.scrollRect = new Rectangle(0, 0, Browser.clientWidth, Browser.clientHeight); 2017-12-15 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 li970704928 相关问题 发起问题须知...
来源: Laya_社区 发布时间: 20171213
...Sprite(); sp.graphics.drawRect(0, 0, 100, 100, "#FF0000"); var bounds:Rectangle = sp.getGraphicBounds(); Laya.stage.addChild(sp); ``` getBounds可以满足多数多数需求,但由于其需要计算边界,不适合频繁调用。 2. 设置容器的autoSize为true。 ```javascript var...
来源: Laya2.0_文档 发布时间: 20210715
...aya.Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); var bounds:Laya.Rectangle=sp.getGraphicBounds(); Laya.stage.addChild(sp); ``` getBounds可以满足多数多数需求,但由于其需要计算边界,不适合频繁调用。 1. 设置容器的autoSize为true。 ```javascript var sp=new L...
来源: Laya2.0_文档 发布时间: 20210715
...itRect { constructor() { this.rec = new Laya.Rectangle(); this.isMouseOver = false; this.reset(); } reset() { this.rec.reset(); this.href = null; this.isMou...
来源: Laya_社区 发布时间: 20200724