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

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

151. CPU优化方式(TypeScript-2D进阶篇(TS)-性能优化) [ 66%]

...oSize是不可取的。如果设置了size,autoSize将不起效。 使用loadImage后获取宽高: ```typescript var sp=new Laya.Sprite(); sp.loadImage("res/apes/monkey2.png",0,0,0,0,Laya.Handler.create(this,function() { console.log(sp.width,sp.height); })); Laya.stage.addChild(sp); ``` loadImag...

来源: Laya2.0_文档 发布时间: 20210714

152. 使用以下代码打开超大分辨率图片 WebGL 模式无法正常显示 [ 66%]

...); //WebGL Laya.Stat.show(0,0); let sp:Laya.Sprite = new Laya.Sprite; //sp.loadImage("comp/big.png"); //读取分辨率小的图片 正常 sp.loadImage("comp/hug.png"); //读取大分辨率图片 无法显示 Laya.stage.addChild(sp); } } new GameMain();//问题描述 客户要求使用LAYA引擎打...

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

153. [LayaAirIDE3]WorkerLoader的bug及临时解决方案 [ 66%]

...息又被自己收了,收了后也不判断消息合不合法直接调用loadImage2去加载,因为这个消息的data.url是undefined,所以会不断请求名为undefined的资源。我把workloader改了下,调用loadImage2前检测下data.url就没问题了   附件 : --> 2024-02-29 添...

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

154. 3d场景下面有张2d的图片,当鼠标焦点不在该网页时,2d图片为啥会闪动 [ 66%]

...      var sprite0:Sprite = new Sprite();             sprite0.loadImage("creatRoom/background_bk.png");             sprite0.pos(0,0 );             sprite0.cacheAsBitmap = true;             Laya.stage.addChildAt(sprite0,0);                       ...

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

155. 圆形的头像怎么实现? [ 66%]

...aphics.drawCircle(88, 86, 40, 'transparent');   var tx = new Sprite(); tx.loadImage(PATH + 'tx.jpg'); tx.scale(0.3,0.3); this.addChild(tx); tx.mask = point; 2017-09-28 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 qq408896436 相关问...

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

156. 鼠标交互-Hold [ 66%]

...})(); function createApe() { // 添加一只猩猩 ape = new Sprite(); ape.loadImage(apePath); var texture = Laya.loader.getRes(apePath); ape.pivot(texture.width / 2, texture.height / 2); ape.pos(Laya.stage.width / 2, Laya.stage.height / 2); ape.scale(0.8, 0.8); Laya.stage.addChild(ape); // 鼠标...

来源: Laya_示例 发布时间: 20241117

157. 缓动-时间线 [ 66%]

...his, this.keyDown); } function createApe() { target = new Sprite(); target.loadImage("../../res/apes/monkey2.png"); Laya.stage.addChild(target); target.pivot(55, 72); target.pos(100,100); } function createTimerLine() { timeLine.addLabel("turnRight",0).to(target,{x:450, y:100, scaleX:0.5, scaleY:0.5}...

来源: Laya_示例 发布时间: 20241117

158. 载入U3D导出的粒子特效报错 [ 66%]

...ded @ laya.core.js:12808 onload @ laya.core.js:12736 load (async) __proto._loadImage @ laya.core.js:12745 __proto.load @ laya.core.js:12665 __proto._doLoad @ laya.core.js:13328 __proto._next @ laya.core.js:13301 __proto._createLoad @ laya.core.js:13286 __proto._create @ laya.core.js:13187 __proto.cr...

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

159. 鼠标交互-Hold [ 65%]

...prite = Laya.Sprite, Event = Laya.Event; this.ape = new Sprite(); this.ape.loadImage(apePath); let texture = Laya.loader.getRes(apePath); this.ape.pivot(texture.width / 2, texture.height / 2); this.ape.pos(Laya.stage.width / 2, Laya.stage.height / 2); this.ape.scale(0.8, 0.8); Laya.stage.addChild(th...

来源: Laya2.0_示例 发布时间: 20241117

160. 滤镜-模糊滤镜 [ 65%]

...teApe)); } private createApe(): void { var ape: Sprite = new Sprite(); ape.loadImage(this.apePath); ape.x = (Laya.stage.width - ape.width) / 2; ape.y = (Laya.stage.height - ape.height) / 2; Laya.stage.addChild(ape); this.applayFilter(ape); } private applayFilter(ape: Sprite): void { var blurFilter: ...

来源: Laya2.0_示例 发布时间: 20241117