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

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

151. 3D模型旋转定位问题 [ 71%]

...D对象 附件上传了我的工程文件。   如果是使用Laya.loader.create("model/build/warehouse1/warehouse1.lh", Laya.Handler.create(this, onComplete)); function onComplete() { //仓库原型 warehouse1 = Laya.Sprite3D.load("model/build/warehouse1/warehouse1.lh"); scene.addChild(warehouse1)...

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

152. Laya.loader.load加载位图字体 [ 71%]

...to.onLoaded   else if (type==="font"){//这里,启用webgl后,HTMLImage.create返回的是Texture2D,不是HTMLImage,data上没有_source这个属性 //导致重复加载图片,走不到else里面,if的判断是否应该改为 !this._data             if (!data._source){     ...

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

153. 资源回收的清理不干净的bug [ 71%]

...cene3D;         Laya.Sprite3D.load("Models/Ball.lh", Laya.Handler.create(this, function(sp){             for(var i=0; i<3; i++){                 var ball = myscene.addChild(sp.clone());                 ball.name = i.toString();    ...

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

154. 关于layaair中类的大小写规则有没有基本的说明文档 [ 71%]

...明文档 比如: Laya.loader.load("res/atlas/comp.json", Laya.Handler.create(null, onLoaded), null, Laya.Loader.ATLAS); Laya.loader.load(resArray, Laya.Handler.create(null,onLoaded)); loaderhandler   2017-03-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...

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

155. WaterPrimaryMaterial的使用 [ 71%]

...rial();         Laya.Texture2D.load("res/water1.png", Laya.Handler.create(null, function(tex:Laya.Texture2D) { // material.albedoTexture = tex; material.mainTexture = tex; })); Laya.Texture2D.load("res/FoamTexture.jpg", Laya.Handler.create(null, function(tex:Laya.Texture2D) { // material.alb...

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

156. 照着官方文档写的 Dialog 报错? [ 71%]

...bin/res/ui/progressBar.png", "../bin/res/ui/progressBar$bar.png"], Handler.create(this, this.onPreloaded)); }; LoadResource.prototype.onPreloaded = function () { this.initLoadData(); }; LoadResource.prototype.initLoadData = function () { var res_array = [ {url:"res/ui/dialog.png",type:Laya.Loader.IM...

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

157. 微信环境下面Laya.Browser.window.protobuf.load不能读取本地的proto文件 [ 71%]

... at Type.get (http://127.0.0.1:53462/game/code.js:98613:48)     at Type.create (http://127.0.0.1:53462/game/code.js:98776:20)     at onAssetsLoaded (http://127.0.0.1:53462/game/code.js:102253:32)     at finish (http://127.0.0.1:53462/game/code.js:97544:9)     at process (http://127.0.0.1:534...

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

158. 设置遮罩(ActionScript-LayaAir基础篇(AS3)-位图) [ 71%]

...过回调方法绘制图片并添加到舞台 Laya.loader.load(Res,Handler.create(this,graphicsImg)); } private function graphicsImg():void { img = new Sprite(); //获取图片资源,绘制到画布 img.graphics.drawTexture(Laya.loader.getRes(Res),150,50); //添加到舞台 Laya.stage.addChild(img...

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

159. 物理碰撞器(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 71%]

...平面 var plane = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createPlane(10, 10, 10, 10))) as Laya.MeshSprite3D; //新建材质 var planeMat:Laya.BlinnPhongMaterial = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/threeDimen/Physics/grass.png", Laya.Handler.create(this, functi...

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

160. 物理碰撞器(ActionScript-3D基础(AS3)-LayaAir3D之物理系统) [ 71%]

...面 var plane:MeshSprite3D = scene.addChild(new MeshSprite3D(PrimitiveMesh.createPlane(10, 10, 10, 10))) as MeshSprite3D; //新建材质 var planeMat:BlinnPhongMaterial = new BlinnPhongMaterial(); Texture2D.load("res/threeDimen/Physics/grass.png", Handler.create(null, function(tex:Texture2D):void { ...

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