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

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

501. HttpRequest 回调方法都没执行 LayaAir 1.7.17 beta JS版本 [ 69%]

...var resourceArray = [ { url:"res/atlas/comp.atlas" , type : Laya.Loader.ATLAS} ]; Laya.loader.load(resourceArray,Laya.Handler.create(null,loadResourceComplete)); } function loadResourceComplete() { Laya.stage.addChild(new LoginView()); } })(); feiguangfu • 2018-03-16 09:55 这个是主...

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

502. Laya3D场景加载问题 [ 69%]

...     constructor() { super(); }     onAwake(): void {         Laya.loader.create(this.resource, Laya.Handler.create(this, this.onPreLoadFinish));     }     onPreLoadFinish() {         //初始化3D场景         let test = Laya.Loader.getRes("gate/Conventional/Test.ls")       ...

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

503. 支付宝小游戏 · LayaAir3.0文档 · LAYABOX [ 69%]

...毕,此方法只执行一次 onAwake(): void { //支付宝小游戏 Laya.loader.loadPackage("sub1", this.printProgress).then(() => { Laya.loader.load("sub1/Cube.lh").then((res: Laya.PrefabImpl) => { let sp3: Laya.Sprite3D = res.create() as Laya.Sprite3D; this.scene3d.addChild(sp3); }); }) La...

来源: Laya3.0_文档 发布时间: 20241014

504. 自适应问题 [ 69%]

...bgColor = "#ff0000";       Laya.stage.scaleMode = "fixedwidth";   Laya.loader.load("http://localhost/layabox/layabox/layabox/res/bg.png'", Handler.create(this, function () {         var t = Laya.loader.getRes(skin);         var _sprite = new Sprite();         _sprite.graphics.drawTex...

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

505. 图集制作与使用详解(ActionScript-IDE篇(AS3)-使用IDE创作) [ 68%]

...的示例代码为: ```typescript //atlas方式图集使用示例 Laya.loader.load("./res/atlas/test.atlas", Handler.create(this, onLoaded)); ``` `.json`是一种兼容第三方的图集配置方式,由于`.json`文件应用广泛,不仅仅用于图集,所以为了识别是否为图集配置...

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

506. 微信小游戏加载json问题 [ 68%]

...,可以加载json,关闭调试,加载json失败 怎么解决 用了 loader加载的 2018-08-30 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_XS 赞同来自: 你应该是资源从外网加载的,然...

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

507. 加载配置json文件不成功!json文件放在bin目录下的 [ 68%]

加载配置json文件不成功!json文件放在bin目录下的   Laya.loader.load(["res/atlas/comp.atlas","res/atlas/popup.atlas","res/atlas/cartoon.atlas","res/atlas/miner.atlas","gameConf.json"],Laya.Handler.create(this,onloaded),null,null); 2018-07-23 添加评论 免费帖 --> 分享 微博...

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

508. 微信小游戏downLoadFile手动缓存的文件存在哪里?后续后续怎么load和getres [ 68%]

...wnloadfile一些资源,请问这些资源存储的路径?后续用Laya.loader.load 和 Laya.loader.getres时,传入的路径参数是? 2018-09-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复   赞同...

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

509. 能否恢复Animation.getGraphicBounds在1.6时的用法 [ 68%]

...ookAt的用法 Texture图片能否进行翻转? Laya.URL.basePath与Laya.loader.load用法 请问关于遮罩的用法,在哪块可以找到? 编辑器下HtmlDIVElement属性能否支持style选项设置 请问下layaflash能否支持热更新? Laya.loader.clearTextureRes引起的内存泄...

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

510. BitmapFont的loadFont方法的回调问题 [ 68%]

...lete如果成功,返回本身,如果失败,返回null 建议:使用loader加载位图字体,不用自己调用BitmapFont接口,错误处理方式和loader相同 在1.7.14beta版本就可以使用了,你可以关注下版本更新日志。多谢反馈~~   2017-12-22 0 2 分享 微博 Q...

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