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

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

821. 屏幕适配模式选择scale_exactfit的话ui中的top,bottom,left,right怎么会无效啊? [ 67%]

...,会有黑边),根据屏幕长宽比,自动选择使用SCALE_FIXED_WIDTH或SCALE_FIXED_HEIGHT*/ static SCALE_FIXED_AUTO: string; 2017-10-30 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 浪货界扛把子 相关问题 【屏幕适...

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

822. worker.js 使用问题 [ 67%]

...bGL){             /*__JS__ */bitmap=HTMLImage.create(imageData.width,imageData.height,1);             /*__JS__ */bitmap.loadImageSource(imageData);             /*__JS__ */bitmap._setCreateURL(data.url);         } else {             bitmap = new...

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

823. 急急急,如何设置按钮点击加载ani [ 67%]

...ctangle = ani.getGraphicBounds();             ani.pivot(bounds.width / 2, bounds.height / 2);                          ani.pos(Laya.stage.width / 2, Laya.stage.height / 2);                          Laya.stage.addChild(ani);       } } }...

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

824. 升级到2.0后.原本用字符串索引module内的函数,发现不行了, 求指教 [ 67%]

...的如下代码能解决,  if (window["Laya3D"]) Laya3D.init(GameConfig.width, GameConfig.height);         else Laya.init(GameConfig.width, GameConfig.height, Laya["WebGL"]);         Laya["Physics"] && Laya["Physics"].enable();         Laya["DebugPanel"] && L...

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

825. 更新到1.7.6beta之后,HBox有bug [ 67%]

...laya.display.Sprite(); var img: laya.ui.Image = new laya.ui.Image(skin); s.width = img.width; s.height = img.height; s.addChild(img); hbox.addChild(s); } Laya.stage.addChild(hbox); } 2017-06-08 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁定, ...

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

826. js环境下使用Loader加载图片在Sprite对象的.on函数无效 [ 67%]

...被触发 //设置背景图片 this.bgimg = new Laya.Sprite(); this.bgimg.width=2*scronw; this.bgimg.height=2*scronh; //加载显示图片,坐标位于0,0 var temptexture=Loader.getRes(pic); if (typeof(temptexture)!="undefined"){ this.bgimg.texture=Loader.getRes(pic) }else{ this.bgimg.loadImage(pi...

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

827. laya.ui.Tree_API3.0 [ 67%]

...对象的属性 y 的值,用于控制 tree 对象的显示位置。 tree.width = 200;//设置 tree 的宽度。 tree.height = 100;//设置 tree 的高度。 Laya.stage.addChild(tree);//将 tree 添加到显示列表。 } } } import laya.ui.Box; import laya.ui.Clip; import laya.ui.Label; class Item...

来源: Laya3.0_api 发布时间: 20231115

828. laya.ui.Component [ 67%]

...only] 对象的显示高度(以像素为单位)。 Component  displayWidth : Number[read-only] 对象的显示宽度(以像素为单位)。 Component filters : Array滤镜集合。可以设置多个滤镜组合。Sprite globalScaleX : Number[read-only] 获得相对于stage的全局X轴...

来源: laya_api 发布时间: 20170929

829. 3D空间转2D空间的问题 [ 66%]

...Pos2.x < 0 ){ this.imgPos2.x = 0; }else if( this.imgPos2.x >= camera_width){ this.imgPos2.x = camera_width - 84; //判断显示图标的Y是在上面还是下面 if(this.imgPos2.y < 0 ){ this.imgPos2.y = 0; } MainScene.RobotLocations[i-1].pos(this.imgPos2.x, this.imgPos2.y); 其中this.imgP...

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

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

.../monkey2.png",0,0,0,0,Laya.Handler.create(this,function() { console.log(sp.width,sp.height); })); Laya.stage.addChild(sp); ``` loadImage在加载完成的回调函数触发之后才可以正确获取宽高。 1. **直接调用size设置:** ```typescript Laya.loader.load("res/apes/monkey2.png",Laya...

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