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

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

281. Laya.Handler.create 加载图片回调参数问题 [ 70%]

...mg/popular.png", 0, 0, 0, 0, Laya.Handler.create(this, function (a1, a2) { console.log(a1, a2); }), [100]);   为什么不能把Laya.Hander.create后面带的这个参数传到Function里面?       附件 : --> 2018-06-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...

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

282. 打APK后加载unity导出资源出错 [ 70%]

...apName+"1.lh";         if(this.PRINT_LOG){             console.log("准备读取区域"+curIndex+" 的 路径: "+path+"地图");         }         Sprite3D.load(path,Handler.create(null,function(sp){             if(_$this.PRINT_LOG){          ...

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

283. http 请求 once 的 回调参数,如何传递和接收? [ 70%]

..., "post","json",null);   回调方法: success:function (e,args) {     console.log(e); //此行可以得到响应内容     console.log(args);  //此行无法获取自定义参数? } 请问如何获取/传递 自定义参数。 2018-03-04 添加评论 免费帖 --> 分享 微博 QZONE ...

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

284. Tab组件如何通过js控制选中 [ 70%]

...: 2 人 xdkaka • 2017-12-14 17:38 我就是这么做的,不可以啊,console.log可以出来当前的选项,说明继承没有问题,但是无法更改 class Tab extends TabUI{ constructor() { super() this.zOrder = 1 console.log(this._tab._selectedIndex) //返回1,正常 this._tab._selec...

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

285. 关于功能模块资源回收预疑问 [ 69%]

...r asset:Image = assets[i]; //查看log,清理前资源一直在内存中 console.log(Laya.loader.getRes(asset)); //调用清理方法 Laya.loader.clearRes(asset); //查看log,清理后,资源被卸载 console.log(Laya.loader.getRes(asset)); } } 2017-10-19 0 0 分享 微博 QZONE 微信 为什...

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

286. 裁切图片后,该用什么方式去重绘出裁切后的图片 [ 69%]

...ctx.clear()         const len = points.length;         console.log("ppppppppppppppp ", points)         ctx.drawPoly(0, 0, points, "#FFFFFF", "#FF00FF", 1)     } 附件 : --> 2020-04-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...

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

287. 请问如何监听html的button元件ontouchstart,ontouchend等事件 [ 69%]

...ment.createElement('button'); this.btn_CloseWebiFrame.onclick = () => { console.log("onclick"); };  oncontextmenu也没有问题。this.img_closeWebiFrame.oncontextmenu = () => { console.log("aaa4"); this.img_closeWebiFrame.src = "SlotGameTemplate/phone_public_setting_source/phone_btn_setting...

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

288. [LayaAir3]V3.2 | 调试结果不一致,导致无法判断结果? [ 69%]

...  onStart() {     //@ts-ignore     window.camera = this.camera;     console.log("Game start", this.camera._up);     console.log(       "Game start",       this.camera._up.x,       this.camera._up.y,       this.camera._up.z     );   } } 附件 : --> testProject.zip 2024-10-29 ...

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

289. 加载模型后如何取得在Unity的Transform.Rotation属性 [ 69%]

...false); 我可以看到模型transform.rotation值的变化,         console.log(this.needle.transform.rotation); 但是,我查看         console.log(this.needle.transform.rotationEuler); 却是却是 undefined。 2017-12-06 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复...

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

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

...cene()); scene.once(Laya.Event.HIERARCHY_LOADED, null, function (sprite) { console.log("scene HIERARCHY_LOADED"); }); scene.once(Laya.Event.LOADED, null, function (sprite) { console.log("scene LOADED"); });HIERARCHY_LOADED 和 LOADED有什么区别?为什么对scene不起作用? 2017-06-19 添...

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