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

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

51. 帮忙看看Texture类getPixels内存泄漏的问题。 [ 80%]

...>> 1); _colorSpr.size(_colorTex.width, _colorTex.height); Laya.stage.addChild(_colorSpr); _initPixelCount = getPixel(_colorTex); addEvent(); } private function addEvent():void { _colorSpr.on(Event.MOUSE_MOVE, this, __moveHandler); } private function __moveHandler():void { var p:Point = toLocal...

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

52. 真机测试时 有3d模型的界面尺寸就会错乱 [ 79%]

...始有问题 问题代码:  _modePnl是场景里的节点   一执行addChild()这句话  界面布局就会乱   请问是什么问题呢 let { x, y } = this._modelPnl.localToGlobal(new Laya.Point(0, 0))         let { x: x2, y: y2 } = this._modelPnl.localToGlobal(new Laya.Point(this._m...

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

53. 我升级引擎到1.7.16beta,从Unity导入的模型就遇到问题了,可以帮我查看一下吗? [ 79%]

...tage.ALIGN_CENTER; Laya.stage.alignV = Laya.Stage.ALIGN_CENTER; Laya.stage.addChild(Laya.Scene.load("res/LayaScene_Shark/Shark.ls")) as Laya.Sprite3D; } } new LayaAir3D(); 附件 : --> Shark.rar 2018-01-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...

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

54. 添加fairygui使用fairygui.UIPackage.addPackage ( "res/Bag" )后可以正常跑,发布到微信小游戏出错 [ 79%]

...var testView:TestView = new TestView();             Laya.stage.addChild(testView);              fairygui.UIPackage.addPackage ( "res/Bag" );             Laya.stage.addChild ( fairygui.GRoot.inst.displayObject );             fairygui.GRoot.inst.addChil...

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

55. 降帧模式下oppo真机上闪屏 [ 79%]

..._FULL; Laya.stage.bgColor="#444"; var sprite=new Laya.Sprite(); Laya.stage.addChild(sprite); sprite.loadImage("img/bg.jpg"); } start(); 附件 : --> test-low-frame.zip 2020-05-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交...

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

56. 关于微信小游戏关系链的问题 [ 79%]

...张图片 var image:Image = new Image(); image.skin = "a.png"; Laya.stage.addChild(image);     以上是基本用法,具体开发数据域的限制请参考官方的文档,这里只列出了具体的使用说明 2018-03-10 2 4 分享 微博 QZONE 微信 lvming1983 赞同来自: 那这个怎么...

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

57. 求助。资源加载问题,按照官方demo出现问题 [ 79%]

...onLoadComplete(){     const scene = new Laya.Scene3D()     Laya.stage.addChild(scene)          const prefab = Laya.loader.getRes(url)     scene.addChild(prefab) } 2020-03-13 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 ...

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

58. drawToCanvas转出图片与游戏内显示颜色差距过大 [ 78%]

... init() {         Laya.stage.bgColor='#ffffff';         Laya.stage.addChild(new Laya.Image('comp/img/img1.png'));         Laya.timer.once(1000, this, this.delayShow);     }     delayShow() {         let canvas = Laya.stage.drawToCanvas(Laya.stage.width, Laya.stage.height, 0, 0); ...

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

59. rigidBody.applyForce 物体不会移动 [ 78%]

... Laya.Scene3D(); //将场景加到舞台上 this.scene = scene; Laya.stage.addChild(scene); //添加方向光 var directionlight: Laya.DirectionLight = scene.getChildByName( "Directional Light" ) as Laya.DirectionLight; this.directionlight = directionlight; //加入子層人物腳色到舞台 var li...

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

60. dialog的popup方法不会关闭其他弹窗 [ 78%]

...new NormalDialog(context); this.normalDialog.popup(true, true); Laya.stage.addChild(this.normalDialog);  }  }     // 弹窗代码   class NormalDialog extends ui.normalDialogUI { constructor( text: string ) { super(); // 设置label文字 this.context.text = text; this.btn_close.on(Laya.Event.C...

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