• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 373 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0049 秒)

351. iphoneX环境下新手引导的抠图透明区域为黑色,其它机型都是正常的。 [ 44%]

...a_Aaron 赞同来自: zd1fr5g55 、Barry Allen GuideLayer. scrollcet = new Rectangle(0,0,屏幕宽(舞台宽高也可以),屏幕高) 限制一下试试,有问题再及时反馈 2017-12-22 2 1 分享 微博 QZONE 微信 宇智波 旋 赞同来自: leesson 已经9102年了 laya还没有解...

来源: Laya_社区 发布时间: 20171222

352. tiledMap 官方示例都运行不了 [ 43%]

...= 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

353. html固定宽高,设置垂直居中没有效果。只有水平居中才生效。看了下源码,感觉在updatePos函数里的算法不对 [ 43%]

...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

354. Panel初始化BUG [ 42%]

...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

355. 关于创建Sprite获取大小 [ 42%]

...完全不依赖于这个,如果需要width和height, new window.Laya.Rectangle(0, 0, this.img_width, this.img_height, '#FF0000'), 然后设置sprite.hitArea = rect. 但是这个其实很弱。 首先,这个rect不会随着图片的旋转而旋转,所以要做精细的碰撞检测得自己...

来源: Laya_社区 发布时间: 20180530

356. matter中layasprite怎么改变图片大小? [ 42%]

...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

357. destination-out 叠加模式问题 [ 41%]

...rtarget太大了 可以这样限制一下 guideContainer.scrollRect = new Rectangle(0, 0, Browser.clientWidth, Browser.clientHeight); 2017-12-15 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 li970704928 相关问题 发起问题须知...

来源: Laya_社区 发布时间: 20171213

358. CPU优化方式(ActionScript-2D进阶篇(AS3)-性能优化) [ 39%]

...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

359. CPU优化方式(JavaScript-2D进阶篇(JS)-性能优化) [ 39%]

...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

360. 富文本过程中我遇到的问题以及解决方法(超链接换行以及无法接收超链接鼠标事件以及br或者 标签会崩溃报错的问题) [ 39%]

...itRect {         constructor() {             this.rec = new Laya.Rectangle();             this.isMouseOver = false;             this.reset();         }         reset() {             this.rec.reset();             this.href = null;             this.isMou...

来源: Laya_社区 发布时间: 20200724