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

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

81. LayaAir和原生DOM交互(ActionScript-2D进阶篇(AS3)-扩展模块) [ 68%]

....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

82. 3D网格添加刚体后设置欧拉角出现位置错误 [ 68%]

...素始终保持在最底部显示? 编译调试启动chrome出现错误: Error processing launch: Error Could not attach to main target 如何设置Sprite的宽高和点击区域? Laya2.6.0beta 物理引擎 刚体碰撞点位置获取不正确 版本不匹配! 全局 tsc (2.2.2) != VS Code 的...

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

83. WebSocket发送与接收数据(ActionScript-LayaAir基础篇(AS3)-数据与通信) [ 68%]

...收到消息抛出的事件 Event.CLOSE :socket关闭抛出的事件 Event.ERROR :连接出错抛出的事件 ``` 上面这四个事件是必要的,这也是我们处理网络消息的前提。 ​ 这里我们用AS项目进行讲解,新建一个LayaAir的空项目。声明一个Socket的实例...

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

84. load 粒子的时候永远出错 [ 67%]

...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

85. mac下用FB打包发布测试页面,chrome浏览器看不到预期显示文字 [ 67%]

...听(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

86. 用Socket连接服务器,服务端显示已经有登录,但Event.OPEN没有触发 [ 67%]

...his.on(Event.MESSAGE, this, OnRecv);             this.on(Event.ERROR, this, OnError);         }                           public function OnConnected(e:*=null):void         {             trace('OnConnected');         }     ...

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

87. UI编辑发布后运行lose skin [ 67%]

...到类的定义!这是为什么? 已上传 Demo 附件 Ts 编辑提示error TS5023: Unknown option 'p' 循环依赖不能运行 Circular dependency: 【带附件】 使用Laya2.0.0beta5.1 发布官方示例 真机报错 window is not defined 如何通过命令行工具构建和发布项目 2.2.0...

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

88. 求HTTP相关的文档或者例子谢谢了 [ 67%]

...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

89. 和原生Dom交互 · LayaAir3.0文档 · LAYABOX [ 67%]

...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

90. ts加密md5码封装 [ 67%]

...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