大约有 97 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
Laya_社区(65) Laya2.0_api(9) laya_api(7) Laya3.0_api(7) Laya2.0_文档(4) Laya3.0_文档(3) Laya_示例(1) Laya2.0_示例(1)
...03:8888"); // this.socket.connect("10.10.1.103",8888); this.socket.on(Laya.Event.OPEN, this, openHandler); //建立连接 this.socket.on(Laya.Event.MESSAGE, this, receiveHandler); //接收到数据触发函数 this.socket.on(Laya.Event.CLOSE, this, closeHandler); //关闭事件 this.socket.on(Laya.E...
来源: Laya_社区 发布时间: 20180509
...h=200; textInput.x=100; textInput.y=200; addChild(textInput); textInput.addEventListener(FocusEvent.FOCUS_IN,onFocusIn); textInput.addEventListener(FocusEvent.FOCUS_OUT,onFocusOut); private function onFocusIn(event:FocusEvent):void { textInput.text="你的键盘打开了"; } private function onFocus...
来源: Laya_社区 发布时间: 20151225
...ction Controller() { Controller.super(this); this.btn.on(Event.CLICK,this,function(){ this.destroy(); }) } Laya.class(Controller, "Controller", stUI); 2018-08-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...
来源: Laya_社区 发布时间: 20180831
...,完成事件,错误事件等 /** * 请求进度改变时调度。 * @eventType Event.PROGRESS * */ /*[Event(name = "progress", type = "laya.events.Event")]*/ /** * 请求结束后调度。 * @eventType Event.COMPLETE * */ /*[Event(name = "complete", type = "laya.events.Event")]*/ /** * 请求...
来源: Laya3.0_文档 发布时间: 20241014
...勾选 场景1跳转场景2的代码 private onynYesBtn(evt: Laya.Event): void { console.log("[BtnClick] [onynYesBtn!]"); //this.yn_board_Cc.selectedIndex = 0; //跳转新场景 Laya.Scene.close("Scene.ls"); this._view.dispose(); ...
来源: Laya_社区 发布时间: 20230517
... 同一个位置使用web和移动模式点击触发的坐标点不一样 Event.CLOSE不触发 事件绑定不触发bug Laya2.0 的3D射线检测能拿到触发模型在射线触发点上的法线吗 给每个精灵绑定点击事件,但点击精灵的时候时而触发时而不触发点击事件 ...
来源: Laya_社区 发布时间: 20210925
...理碰撞无法触发OnTriggerEnter、OnTriggerStay、OnTriggerExit的bug Event.CLOSE不触发 Event触发不了 无法触发浏览器文件上传框 3d物理引擎有碰撞不触发onCollisionEnter ios中没有触发事件前使用playSound没有声音 问题状态 最新活动: 2017-04-11 14:25 ...
来源: Laya_社区 发布时间: 20170410
... Classes | Index | Frames No Frames AsynDialogProperties | Methods | Events | Constants Packagelaya.uiClasspublic class AsynDialogInheritanceAsynDialog Dialog View Box Component Sprite Node EventDispatcher Object 异步Dialog的生命周期:show或者popup > onCreate(如果没有创建过...
来源: laya_api 发布时间: 20170929
Stage中删除不掉Scene Laya.stage.on(Laya.Event.MOUSE_UP, this, function () { var str = ""; if (!hit.sprite3D) { str = "点击选取的几何体"; } else { Laya.stage.removeChild(scene3D); } console.log(str); }); 每次删除scene3D后...
来源: Laya_社区 发布时间: 20171016
...); // this.socket.connectByUrl("ws://localhost:8989"); this.socket.on(Laya.Event.OPEN, this, this.openHandler); this.socket.on(Laya.Event.MESSAGE, this, this.receiveHandler); this.socket.on(Laya.Event.CLOSE, this, this.closeHandler); this.socket.on(Laya.Event.ERROR, this, this.errorHandler); } priva...
来源: Laya_社区 发布时间: 20171129