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

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

591. 如何自定义动画集的图片大小? [ 69%]

...tion.createFrames(["xxx/enemy.png"],"enemy_fly");文件路径: bin > res > atlas > xxx.atlas  操作对象: xxx.atlas "enemy1.png": { "frame": { "h": 145, "idx": 0, "w": 156, "x": 1150, "y": 292 }, "rotated": false, "sourceSize": { "h": 145, "w": 156 }, "spriteSourceSize": { "h": 145...

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

592. QQ玩一玩,在加载 骨骼动画 后的资源映射出问题了 [ 69%]

...查看得到 Laya.Loader.loaderMap 中的映射是有问题的,就是  res/protobuf/client_message.proto 和 res/uieffect/skeleton/jingyu.sk 的值都是同一个 ArrayBuffer 对象, 也就是比较后面加载的 .proto 文件资源被映射到了 jingyu.sk 文件了。   可以看到...

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

593. 无法正常运行官网中的示例代码 [ 69%]

...http://ldc.layabox.com/index.p ... 3D622 控制台报错: Failed to load resource: net::ERR_FILE_NOT_FOUND [warn]Retry to load: D:/demo/bin/res/atlas/comp.json Failed to load resource: net::ERR_FILE_NOT_FOUND [error]Failed to load: D:/demo/bin/res/atlas/comp.json 2017-03-28 添加评论 免费帖 ...

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

594. laya ide2.0 类库设置显示为空 [ 69%]

... 12:49 这个不是可以配置的吗, 为什么不能修改。 都放在res目录里我直接把res目录放到cdn就行了 kylin • 2019-05-15 19:47 设置了index.html目录以后,程序认为index.html在这个目录下,所有的资源、引擎等都会相对于这个目录去获取,所...

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

595. 微信小游戏资源总是加载旧的资源 [ 69%]

...18beta   我是用这样的方式加载的图集 Laya.loader.load([{url: "res/atlas/xxx1.json", type: Loader.ATLAS},         {url: "res/atlas/xxx2.json", type: Loader.ATLAS},          {url: "res/atlas/xxx3.json", type: Loader.ATLAS}], Handler.create(...   并且在这之前已经加...

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

596. Sprite3D的克隆(TypeScript-3D基础(TS)-LayaAir3D之精灵) [ 69%]

...=Sprite3DClone)) ```typescript { ...... //加载模型 Laya.loader.create("res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh", Laya.Handler.create(this, this.onComplete)); } //完成回调 onComplete() { //获取资源 var layaMonkey = this.scene.addChild(Laya.Loader.getRes("res/threeDimen/skinModel...

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

597. laya ts的版本管理功能介绍,示例代码写上去无效,请重新给个,谢谢 [ 69%]

...谢谢。 如 //设置版本控制类型为使用文件名映射的方式 ResourceVersion.type =ResourceVersion.FILENAME_VERSION; 2018-01-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 sulaya 赞同来自: http...

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

598. Clip属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 69%]

...t WebGL = Laya.WebGL; export class UI_Clip { private buttonSkin: string = "res/ui/button-7.png"; private clipSkin: string = "res/ui/num0-9.png"; private bgSkin: string = "res/ui/coutDown.png"; private counter: Clip; private currFrame: number; private controller: Button; constructor() { // 不支持W...

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

599. HTMLDivElement中图文混排怎么获取实际内容大小 [ 69%]

...,导致与其他控件的间隔错误,影响界面布局   例如:res/image/1.png 像素大小是 32x32 var imageHtml: Laya.HTMLDivElement = new Laya.HTMLDivElement(); imageHtml.innerHTML="<img src='res/image/1.png' />"; console.log("size: " + imageHtml.width + ", " + imageHtml.height);...

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

600. 教你微信小游戏使用服务端gzip数据。 [ 68%]

... require('./pako_inflate.min.js'); wx.request({   url: '请求地址',   responseType: 'arraybuffer',    success(res) {     console.log(fromCharCode(Pako.inflate(new Uint8Array(res.data))));   } }); //处理中文 function decodeUTF8(arr,toType)  { //转为utf8编码字符串   let  str  ...

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