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

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

81. 解析sk资源报错 [ 74%]

解析sk资源报错 GameDemo.max.js:21170 Uncaught RangeError: Offset is outside the bounds of the DataView   代码: package com.ppt.components.role {     import laya.ani.bone.Skeleton;     import laya.ani.bone.Templet;     import laya.events.Event;          public class CombatR...

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

82. 怎么播放声音? [ 73%]

..._sound.on(Laya.Event.PROGRESS,this,this.loadcom_f); bg_sound.on(Laya.Event.ERROR,this,this.loadcom_f); bg_sound.load("res/bg.mp3"); private loadcom_f(e:Laya.Event):void{ console.log("------------------=============") }可是这么写了一户,发现loadcom_f根本就没有被调用,还希望各...

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

83. Spine适配版(JavaScript-LayaAir基础篇(JS)-动画基础) [ 73%]

...emplet.on(Event.COMPLETE, this, this.parseComplete); this.templet.on(Event.ERROR, this, this.onError) } private parseComplete(): void { this.skeleton = this.templet.buildArmature(); Laya.stage.addChild(this.skeleton); this.skeleton.pos(Browser.width / 2, Browser.height / 2 + 100); this.skeleton.scal...

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

84. HTMLDivElement添加&字符会报错 [ 73%]

...nt添加&字符会报错 LayaSample.max.js:22828 Uncaught (in promise) Error: This page contains the following errors:error on line 1 at column 71: xmlParseEntityRef: no name 2018-10-24 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的...

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

85. laya.net.Socket_API3.0 [ 73%]

...子协议,连接才能建立成功,否则建立失败,派发 Event.ERROR 事件。 see https://html.spec.whatwg.org/multipage/comms.html#dom-websocket Static BIG_ENDIAN BIG_ENDIAN: string = "bigEndian" Defined in laya/net/Socket.ts:43 主机字节序,是 CPU 存放数据的两种不同顺序...

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

86. WebSocket发送与接收数据(JavaScript-LayaAir基础篇(JS)-数据与通信) [ 73%]

...收到消息抛出的事件 Event.CLOSE :socket关闭抛出的事件 Event.ERROR :连接出错抛出的事件 ``` 上面这四个事件是必须的,这也是我们处理网络消息的前提。 新建一个LayaAir空项目。声明一个Socket实例,声明一个Byte实例: ```typescript //初...

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

87. 如何与服务端建立连接 [ 73%]

...andler);this.socket.on(Event.CLOSE,this,closeHandler);this.socket.on(Event.ERROR,this,errorHandler); 回到方法 成功失败。。 private function openHandler(event:Object = null):void{//正确建立连接; }private function receiveHandler(msg:Object = null):void{///接收到数据触发函数...

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

88. 使用鼠标交互的时候提示错误 [ 73%]

...position或者scale 微信小游戏如何使用ttf字体? Ts 编辑提示error TS5023: Unknown option 'p' 使用3D时候,Property 'getComponentByType' does not exist on type 'Node'. LayaAirIDE下如何使用mask? 编译调试启动chrome出现错误: Error processing launch: Error Could not at...

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

89. parameter 2 is not of type 'WebGLTexture'. [ 73%]

...正常Chrome F12手机模式调试播放报laya.core.js:906 Uncaught TypeError: Failed to execute 'bindTexture' on 'WebGL2RenderingContext': parameter 2 is not of type 'WebGLTexture'. 代码如下:// 创建video对象 let videoElement = new Laya.Video(); videoElement.x = 0; videoElement.y = 0; vid...

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

90. socket与node服务端连不上?按照官方案例 [ 73%]

...socket.on(Laya.Event.CLOSE, this, closeHandler); this.socket.on(Laya.Event.ERROR, this, errorHandler); function openHandler(event){ //正确建立连接; console.log("链接"); } function receiveHandler(msg){ ///接收到数据触发函数 console.log("接受"); } function closeHandler(e){ //关...

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