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

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

1031. HIERARCHY_LOADED 和 LOADED有什么区别?为什么对scene不起作用 [ 54%]

...场景内的元素 var 与 name 的详细区别是什么? Laya.Handler.create和new Laya.Handler有啥区别 dispone和destory的区别 view和Dialog区别 没有加载ls文件的情况下能否设置scene的颜色?还是只能黑色? Image和Sprite在应用上的区别 layaMaxUI里面永远...

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

1032. Laya.Script的派生类的_update函数不工作? [ 54%]

...法正常工作,已测试三台机器均无法正常工作 Laya.loader.create 进度回调函数执行两次 FBXTools.exe把模型拖上去就停止工作,不清楚是什么原因? 构造函数不能进断点 引擎有没有管理或访问系统剪贴板的方法函数 layaair在开发阶段...

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

1033. 进行预加载,每次进入游戏都会重新加载一次 [ 54%]

...】 用这个进行预加载 Laya.loader.load(images, null, Laya.Handler.create(this, onImagesProgress, null, false), Laya.Loader.IMAGE); 但是每次进入都会重新慢慢在加载一次 声音也是一样 2017-02-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 ...

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

1034. 【文档错误】3D Camera文档添加天空盒错误 [ 54%]

...加载贴图文件 Laya.TextureCube.load("skyBox/skyCube.ltc",Laya.Handler.create(this,function(t:Laya.SkyBoxMaterial):void{ skyBox.skyboxMaterial = t; })) 这个回调里面的代码不正确吧,skyBox没有skyboxMaterial属性,它自己本身就是skyboxMaterial。 2018-12-05 添加评论 免...

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

1035. 预设/场景的导出(JavaScript-3D基础(JS)-LayaAir3D之3D场景可视化编辑) [ 54%]

...景 Laya.Scene3D.load('LayaScene_test/Conventional/test.ls',Laya.Handler.create(this,this.onComplete)) } /** * 加载完成 */ onComplete(scene){ // 将场景加到舞台上 Laya.stage.addChild(scene); } } ``` 运行效果(图2): ![](img/2.png)(图2)

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

1036. 百度小游戏 内存不断增大的情况 [ 54%]

...,400); Laya.loader.load([{url:"res/atlas/comp.json",type:"atlas"}],Handler.create(this,this.onLoadUi)); } __proto.onLoadUi=function(){ Laya.timer.loop(100,this,this.onLoaded); } __proto.onLoaded=function(){ if(this.isOpen){ return; } this.isOpen=true; var testView=new TestView(); Laya.stage.addChild...

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

1037. 使用高度图的时候 Cannot read property 'width' of undefined [ 54%]

...property 'width' of undefined var terrainSprite = Laya.MeshTerrainSprite3D.createFromMeshAndHeightMap(terrain.meshFilter.sharedMesh, texture, 45.58879852294922, -45.58879852294922); //报错:Cannot read property 'width' of undefinedDemo见附件。   附件 : --> test.rar 2017-06-01 添加评论 ...

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

1038. 关于tiledmap.moveViewPort动画的问题 [ 54%]

... 赞同来自: Tween.to(this,{x:40,y:50,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onUpdate)}) 大概长这个样子 2018-07-06 0 1 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 如果会用tween 就好办,  tween 里面有个 update 回调, 你可...

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

1039. Image加载完成后的图片大小重设问题 [ 54%]

....loadImage("ui/bg.jpg",0,0,Laya.stage.width,Laya.stage.height,Laya.Handler.create(this,this.onComplete));         Laya.stage.on(Laya.Event.RESIZE,this,this.onResize);     }     onComplete():void     {         this.onResize();     }     onResize():void{         this.bg_img.width...

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

1040. drawTexture时,Matrix对象,a=-1,无法实现水平翻转 [ 54%]

... ssqhu 赞同来自: qihei Laya.loader.load("res/atlas/test0.png", Handler.create(this, function():void    {     var t:Texture = Laya.loader.getRes("res/atlas/test0.png");     ape = new Sprite();     var matrix:Matrix = new Matrix();     matrix.a = -1;     matrix.tx = 2*100+ t...

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