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

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

71. drawPath的绘制问题 [ 83%]

drawPath的绘制问题 绘制数据:moveTo,0,0,lineTo,0,448,moveTo,32,0,lineTo,32,448,moveTo,64,0,lineTo,64,448,moveTo,96,0,lineTo,96,448,moveTo,128,0,lineTo,128,448,moveTo,160,0,lineTo,160,448,moveTo,192,0,lineTo,192,448,moveTo,224,0,lineTo,224,448,moveTo,256,0,lineTo,256,448,moveTo,288,0,lineT...

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

72. 【简单跑酷--JS版】---Lv.6 终篇 [ 83%]

...ld(this.speedEnergy); //玩家 this.player = new Player(); this.player.x = 32 * 8; this.player.y = 32 * 4; this.addChild(this.player); //监听 按下 弹起 事件 Laya.stage.on(laya.events.Event.MOUSE_DOWN, this, this.onMouseDown); Laya.stage.on(laya.events.Event.MOUSE_UP, this, this.onMouseUp); /...

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

73. 新建Laya2D空项目(TS),编译出错! [ 83%]

...直接F5编译,提示出错如下:   开始编译: Thu Jul 11 2019 15:32:44 GMT+0800 (中国标准时间) -------------------------------------- [15:32:44] Working directory changed to D:\LayaAirIDE_beta\resources\app [15:32:44] Using gulpfile D:\workshop\Laya\Test5\.laya\compile.js [15:32:44] ...

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

74. Protobuf decode报错 [ 83%]

...h(); //封装数据为约定的格式 length,id,buff socket.output.writeInt32(length); socket.output.writeInt32(id); socket.output.writeArrayBuffer(buffer); //发送给服务器 socket.flush(); 2.问题来了,我在接受socket消息的时候,使用proto decode的时候报错 //--------不知道...

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

75. 【简单跑酷--JS版】---Lv.5 玩家踩地板 [ 83%]

...放到屏幕右边 this.x = 852; //y坐标取一个随机值 为什么是32 因为我们的整个素材是 32 * 20 拼起来的 this.y = 32 * 6 + 32 * parseInt(8 * Math.random()); if(this.bg == null){ //贴图纹理 this.bgTexture = Laya.loader.getRes("res/floor.png"); this.bg = new laya.display.Spr...

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

76. 问下关于websocket的问题 [ 82%]

...Users\Administrator\Desktop\jjj.js:1:85) at Module._compile (module.js:571:32) at Object.Module._extensions..js (module.js:580:10) at Module.load (module.js:488:32) at tryModuleLoad (module.js:447:12) at Function.Module._load (module.js:439:3) C:\Users\Administrator\Desktop> 2017-04-24 添加评...

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

77. sprite的rotation设置的位置不一样,子sprite的方向也不一样 [ 82%]

...ite(); var s3 = new Laya.Sprite(); s1.width = 64; s1.height = 64; s1.pivot(32, 32); s1.rotation = 90; s2.addChild(s3); s1.addChild(s2);    var s1 = new Laya.Sprite(); var s2 = new Laya.Sprite(); var s3 = new Laya.Sprite(); s1.width = 64; s1.height = 64; s1.pivot(32, 32); s2.addChild(s3); s1.addChi...

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

78. 关于Layer使用问题 [ 82%]

关于Layer使用问题 技术文档内说明,场景内有32个层,可随意使用,那么我如何定义这32个层级的名称呢?这32个层级有配置的地方吗? 2018-04-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的...

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

79. laya.ani.KeyFramesContent_API3.0 [ 82%]

...duration interpolationData nextData startTime Properties dData dData: Float32Array Defined in laya/ani/KeyFramesContent.ts:15 数据变化量 data data: Float32Array Defined in laya/ani/KeyFramesContent.ts:13 数据 duration duration: number Defined in laya/ani/KeyFramesContent.ts:9 持续时间 int...

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

80. layabox里as3-proto数组转出来有问题 [ 82%]

...roto。 以下为数组协议示例 message RoomList {     required uint32 roomid = 1;      required uint32 limitcoin = 2;      required uint32 bankercoin = 3;  } message GetRoomListResponse {     required uint32 code = 1;      repeated RoomList roomList = 2;  } 用以上协议...

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