大约有 161 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0048 秒)
....getMedia(options, Handler.create(this, onSuccess), Handler.create(this, onError)); } } private function showMessage():void { var text:Text = new Text(); Laya.stage.addChild(text); text.text = "单击舞台播放和暂停"; text.color = "#FFFFFF"; text.fontSize = 100; text.valign = "middle"; text.al...
来源: Laya2.0_文档 发布时间: 20210715
...素始终保持在最底部显示? 编译调试启动chrome出现错误: Error processing launch: Error Could not attach to main target 如何设置Sprite的宽高和点击区域? Laya2.6.0beta 物理引擎 刚体碰撞点位置获取不正确 版本不匹配! 全局 tsc (2.2.2) != VS Code 的...
来源: Laya_社区 发布时间: 20201127
...收到消息抛出的事件 Event.CLOSE :socket关闭抛出的事件 Event.ERROR :连接出错抛出的事件 ``` 上面这四个事件是必要的,这也是我们处理网络消息的前提。 这里我们用AS项目进行讲解,新建一个LayaAir的空项目。声明一个Socket的实例...
来源: Laya2.0_文档 发布时间: 20210715
...MiniAdpter] already exist: Object {} [warn]Retry to load: res/rotate.part [error]Failed to load: res/rotate.part 我的代码: Laya.loader.load("res/rotate.part", Handler.create(this, this.onAssetsLoaded),null,Laya.Loader.JSON); 我再bin/res/rotate.part是存在的 2018-02-11 添加评...
来源: Laya_社区 发布时间: 20180211
...听(A页面派发 B页面侦听) 编译调试启动chrome出现错误: Error processing launch: Error Could not attach to main target 游戏运行在chrome里面 听不见声音 谷歌浏览器播放mp3出现The AudioContext was not allowed to start. 2.2.0beta4 发布微信小游戏,安卓设...
来源: Laya_社区 发布时间: 20170429
...his.on(Event.MESSAGE, this, OnRecv); this.on(Event.ERROR, this, OnError); } public function OnConnected(e:*=null):void { trace('OnConnected'); } ...
来源: Laya_社区 发布时间: 20170920
...到类的定义!这是为什么? 已上传 Demo 附件 Ts 编辑提示error TS5023: Unknown option 'p' 循环依赖不能运行 Circular dependency: 【带附件】 使用Laya2.0.0beta5.1 发布官方示例 真机报错 window is not defined 如何通过命令行工具构建和发布项目 2.2.0...
来源: Laya_社区 发布时间: 20180829
...h.events.Event; import flash.events.HTTPStatusEvent; import flash.events.IOErrorEvent; import flash.events.ProgressEvent; import flash.events.SecurityErrorEvent; import flash.net.URLLoader; import flash.net.URLLoaderDataFormat; import flash.net.URLRequest; import flash.net.URLRequestMethod; import f...
来源: Laya_社区 发布时间: 20151217
...s,Laya.Handler.create(this,this.onSuccess),Laya.Handler.create(this,this.onError)); } } private showMessage():void{ var tex:Laya.Text = new Laya.Text(); Laya.stage.addChild(tex); tex.text = "单击舞台播放和暂停"; tex.color = "#ffffff"; tex.fontSize = 100; tex.valign = "middle"; tex.align = "...
来源: Laya3.0_文档 发布时间: 20241014
...mber = 8, max: number = Math.pow(2, bit) - 1) { if (code < 0) throw new Error("code should be greater than: 0"); if (code > max) throw new Error("code should be less than: " + max); return this.padding(code.toString(2), bit, "0", false); } to_hex(code: number, bit: number = 8, max: number = Ma...
来源: Laya_社区 发布时间: 20190321