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

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

231. 本地双击html如何打开laya项目? [ 76%]

...Socket(PORT); } catch (IOException e) { // TODO Auto-generated catch block Log. i(TAG, "异常信息:" + e.getMessage()); } new Thread(this).start(); Log. i(TAG, "server is start......"); } public void run() { // 服务器端连续监听客户端 while (true ) { Socket client = null; try { client ...

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

232. laya3d物体碰撞与触发检测的问题 [ 76%]

...ends Laya.Script {  constructor() { super(); } onTriggerEnter() { console.log("111"); } onTriggerStay() { console.log("111"); } onTriggerExit() { console.log("111"); } onEnable() { }  onDisable() { } } //这是两个类,直接可以就不会发生触发效果,什么都不输出,还是我哪...

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

233. hitTestPoint对象父容器rotation旋转之后检测不了碰撞 [ 76%]

...200 this.addChild(_fish); Laya.timer.loop(100, this, function () { console.log(_fish.x, _fish.y, _fish.width, _fish.height, _fish.rotation); if (_fish.hitTestPoint(_fish.x, _fish.y)) { console.log("hittttttt"); } }); } } //程序入口 Laya.init(600, 400); this.onLoaded() function onLoaded(): void {...

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

234. CommandBuffer_Outline 每次 addCommandBuffer都会永久增加10Gpu,removed掉相机事件也不会减少 [ 76%]

...te3D) == null || !this.isUseOuline){            // console.log('spreite3D node meshSprite3D is null');            return;         }         var unlitMaterial = new Laya.UnlitMaterial();         unlitMaterial.albedoColor = new Laya.Vector4...

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

235. 添加极光推送后,切回后台点击推送过来的消息,出现黑屏闪退是什么原因?内文有LOG,请帮忙查看一下哪出错了。 [ 76%]

...点击推送过来的消息,出现黑屏闪退是什么原因?内文有LOG,请帮忙查看一下哪出错了。 05-17 17:12:40.307 13946-13946/com.wesai.doudizhu I/LayaBox: del engine 05-17 17:12:40.307 13946-13946/com.wesai.doudizhu E/LayaBox: >>>>>>>>>>>>&...

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

236. 小米登录失败 [ 75%]

小米登录失败 window["qg"].login({ success: function (res) { var data = JSON.stringify(res); console.log("OPPO登录:" + data); callBack(res); }, fail: function (res) { LogicManager.instance.toLoginSucc(); console.log("登陆失败:" + JSON.stringify(res)); } });  登陆失败:{"code":7605,...

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

237. permission denied [ 75%]

permission denied log日志报permission denied的log,导致游戏进不去,怎么处理? 2018-06-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: 这个得问问做游戏的人。...

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

238. 截屏文件没有保存 [ 75%]

...:https://ldc.layabox.com/doc/?nav=zh-js-7-2-7 if( window.conch ) { console.log("i'm here 1"); window.conch.captureScreen(function(arrayBuff,width,height){ conch.saveAsPng(arrayBuff,width,height,conch.getCachePath()+"/test.png" ); console.log("i'm here 2:" + arrayBuff.byteLength + " " + width + " " +...

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

239. 鼠标出屏事件 [ 75%]

...      Laya.stage.on(Laya.Event.MOUSE_OUT, this, function(){console.log("mouseout")});         Laya.stage.on(Laya.Event.MOUSE_UP, this, function(){console.log("mouseup")});     mouseup能正常监听到,stage上加的MOUSE_OUT事件,当鼠标移出屏幕时,在浏览器不...

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

240. Sprite3D添加组件或脚本(JavaScript-3D基础(JS)-LayaAir3D之精灵) [ 75%]

...per(); this.rotation = new Laya.Vector3(0, 0.01, 0); } onAwake() { console.log("onAwake"); } onStart() { console.log("onStart"); } onUpdate() { this.owner.transform.rotate(this.rotation, false); } onLateUpdate() { console.log("onLateUpdate"); } } ``` 这样脚本就添加完成了,我们可以看...

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