大约有 107 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0059 秒)
Laya_社区(68) Laya2.0_api(8) laya_api(7) Laya3.0_api(7) Laya2.0_文档(6) Laya2.0_示例(4) Laya_示例(4) Laya3.0_文档(3)
...| Events Packagelaya.uiClasspublic class TextAreaInheritanceTextArea TextInput Label UIComponent Sprite Node EventDispatcher Object TextArea 类用于创建显示对象以显示和输入文本。 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By...
来源: Laya2.0_api 发布时间: 20190513
...4 API上面说socket.output是发送到服务端的数据,接收应该是input吧,如果接收的消息也是消息名称+消息内容的格式,我怎么把消息名称的4个字节获取并解析,再把后面的消息内容解析成protobuf呢,可以给我写几行示例代码吗,万分...
来源: Laya_社区 发布时间: 20170217
...essage is ArrayBuffer) { trace(new Byte(message).readUTFBytes()); } socket.input.clear(); } private function OnCallBack():void { MsgManger.SendMsg("LoginOut"); } private function onConnectError(e:Event=null):void { trace("error"); } } } 写了个测试例子,可以收到服务器的推送的数...
来源: Laya_社区 发布时间: 20170724
....readUTFBytes()); } // 清理缓存的服务端发来的数据 this.socket.input.clear(); } // 出现异常后的事件回调 private onConnectError(e: Event = null): void { console.log("error"); } 3.2 Laya.Byte 二进制读写 在开发项目中,二进制的操作是不可或缺的。在html5时...
来源: Laya3.0_文档 发布时间: 20241014
...h.join(nodeModulesDir, 'rollup-plugin-glsl')); let cache; const config = { input: projPath + '/src/Main.ts', output: { file: projPath + '/bin/js/bundle.js', format: 'iife', name: 'laya', sourcemap: true, }, cache: cache, watch: { include: 'src/**', exclude: 'node_modules/**', }, onwarn: (waring, war...
来源: Laya_社区 发布时间: 20201223
... Laya.init(100,100); var file:any = Laya.Browser.document.createElement("input"); file.type = "file"; file.style.position = "absolute"; file.style.zIndex = 999; Laya.Browser.document.body.appendChild(file);//添加到舞台 var fileReader:any = new Laya.Browser.window.FileReader(); file.onchange = f...
来源: Laya2.0_文档 发布时间: 20210715
... Laya.init(100,100); var file:any = Laya.Browser.document.createElement("input"); file.type = "file"; file.style.position = "absolute"; file.style.zIndex = 999; Laya.Browser.document.body.appendChild(file);//添加到舞台 var fileReader:any = new Laya.Browser.window.FileReader(); file.onchange = f...
来源: Laya3.0_文档 发布时间: 20241014
...uler(0, 0, -20); } // Update is called once per frame void Update () { if (Input.GetKey(KeyCode.A)) { guard.transform.position = new Vector3(guard.transform.position.x + 0.1f, guard.transform.position.y, guard.transform.position.z); } else if (Input.GetKey(KeyCode.D)) { guard.transform.position = ne...
来源: Laya_社区 发布时间: 20171228
...ayabox.game/LayaCache/appCache/9ea141a6/18ac4122_dreams.mp3: avformat_open_input failed, err:Permission denied 07-16 13:28:21.322 1331-1331/com.layabox.game E/MediaPlayer: Should have subtitle controller already set --------- beginning of /dev/log/system 07-16 13:28:37.142 402-531/? I/...
来源: Laya_社区 发布时间: 20190716
...擎 Laya.init(100, 100); var file = Laya.Browser.document.createElement("input"); file.type = "file"; file.style.position = "absolute"; file.style.zIndex = 999; Laya.Browser.document.body.appendChild(file);//添加到舞台 var fileReader = new Laya.Browser.window.FileReader(); file.onchange = funct...
来源: Laya2.0_文档 发布时间: 20210714