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

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

41. app中的socket状态问题 [ 76%]

...et状态问题 1.7.11b 和1.7.10 版都出现 在app中 就算 this.socket.close() 后 this.socket.connected 的状态还是true 且 没收到 Laya.Event.CLOSE 事件通知 但在浏览器上是正常的..     2017-10-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...

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

42. laya1.0 socket connected变量问题 [ 76%]

....socket类里,如图。cleanSocket里才会清connected的值,为什么close里不清,这里是bug吗? 按理来说我都close了你这个还表示连接着... 附件 : --> 2018-12-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的...

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

43. laya.net.Socket_API3.0 [ 75%]

... LITTLE_ENDIAN Accessors connected endian input output Methods cleanSocket close connect connectByUrl event flush hasListener off offAll offAllCaller on once send Constructors constructor new Socket(host?: string | null, port?: number, byteClass?: {}, protocols?: any[] | null, isSecure?: boolean): S...

来源: Laya3.0_api 发布时间: 20231115

44. Dialog有没有关闭时触发的时间,或者点击关闭按钮时的事件 [ 75%]

...时间,或者点击关闭按钮时的事件 现在的问题是,试了close事件,和close方法都是完成关闭动画,才会触发,我希望是在开始关闭动画前触发。想添加一个声效,望解答。 2019-12-30 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找...

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

45. Dialog 关闭效果无效 [ 75%]

...ommonDlg, "CommonDlg", _super); var _proto_ = CommonDlg.prototype; _proto_.closeEffect = Laya.Handler.create(null, this.onCloseEffect, null, true); _proto_.onCloseEffect = function () { console.log("in on close effect") this.close(); } return CommonDlg; })(Laya.Dialog);console.log并未输出任何...

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

46. 如何知道一个dialog是否已关闭? [ 74%]

...关闭? 一个dialog调用popup或者show后,不管有没有再调用close,dialog的destroyed 都为false,isPopup都为true。 有什么属性可以知道这个dialog是否已关闭?    2017-04-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...

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

47. 网络和格式-Socket [ 74%]

... socket.output; socket.on(Event.OPEN, this, onSocketOpen); socket.on(Event.CLOSE, this, onSocketClose); socket.on(Event.MESSAGE, this, onMessageReveived); socket.on(Event.ERROR, this, onConnectError); } function onSocketOpen() { console.log("Connected"); // 发送字符串 socket.send("demonstrate "...

来源: Laya_示例 发布时间: 20241123

48. 关于2.0场景资源管理的问题 [ 74%]

...: 与内容相关的链接 提交 4 个回复 OneWay 赞同来自: layabox close之后调用一下 Laya.Resource.destroyUnusedResources(); 2019-02-16 1 0 分享 微博 QZONE 微信 尔东 赞同来自: 手动顶起。 2019-02-15 0 0 分享 微博 QZONE 微信 layabox 赞同来自: close之后调用...

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

49. Socket连接不上(已解决) [ 74%]

...t.on(Event.OPEN, this, onSocketOpen);             socket.on(Event.CLOSE, this, onSocketClose);             socket.on(Event.MESSAGE, this, onMessageReveived);             socket.on(Event.ERROR, this, onConnectError);                          socket.connect...

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

50. socket通讯返回数据 [ 73%]

...(Laya.Event.MESSAGE, this, this.receiveHandler); this.socket.on(Laya.Event.CLOSE, this, this.closeHandler); this.socket.on(Laya.Event.ERROR, this, this.errorHandler); // this.socket.send("hello world");//###################################################### } private openHandler(event: any = null):...

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