大约有 82 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0039 秒)
Laya_社区(62) Laya3.0_文档(6) Laya3.0_api(3) Laya2.0_文档(3) laya_api(2) Laya_示例(2) Laya2.0_示例(2) Laya2.0_api(2)
...his, this.onLoaded),Laya.Handler.create(this,this.onLoading)); } onLoading(progress){ this.gameLoading.loadTxt.text="Loading..."+(progress*100)+"%"; } onLoaded() { this.cacheAnimation(); var waterBg = Laya.Sprite.fromImage("res/bg.png"); Laya.stage.addChild(waterBg); //创建背景 this.bg = []; thi...
来源: Laya_社区 发布时间: 20170103
... this.onFontLoaded(); }), Handler.create(this, (progress) => { console.log('bitmapFont loading', progress); }, null, false)); this.bitmapFont = new BitmapFont(); } onFontLoaded() { // 设置空格的宽 this.bitmapFont.setSpaceWidth(1...
来源: Laya_社区 发布时间: 20190225
... 打包安卓版本时 播放音效会停止掉背景音乐 load方法的progress回调进的次数太少了。是我哪里设置有问题么 http 请求 once 的 回调参数,如何传递和接收? Laya.Handler.create 回调 问题状态 最新活动: 2017-12-21 16:30 浏览: 1000 关注: 2 人...
来源: Laya_社区 发布时间: 20171221
...时更新版本那个加载效果吗?如果是的话就是一个普通的progress组建就可以搞定了,如果是网页的话,你可以能要了解下网页操作dom节点相关东西才能做! 2017-12-31 0 0 分享 微博 QZONE 微信 gaowei2024 赞同来自: var Loadings=(function(_super...
来源: Laya_社区 发布时间: 20171230
...加载修改的JS语法,发现有几个问题,想请教一下; var progressBar; (function () { Laya.init(720, 1280); var pro1={url:"comp/BG1.jpg",type:Laya.Loader.IMAGE}; var pro2={url:"comp/BG1.jpg",type: Laya.Loader.IMAGE}; var proArr = []; proArr[0]=pro1; proArr[1]=pro2; Laya.loader.load(pr...
来源: Laya_社区 发布时间: 20170701
...进度 p.onLoading = function(num) { //先添加进度组件UI if (!this.Progress) { this.Progress = new Progress(); this.i = 0; } this.i++; this.timeFn(this.i, num); }; p.timeFn = function(i, num) { //用定时延迟去加载进度 - 由于进度太快无法看到一个虚假的效果 Laya.timer.on...
来源: Laya_社区 发布时间: 20170803
...con.atlas" }, { url: "res/atlas/human.atlas" }], Laya.Handler.create(this, progress, null, false), null, Laya.Loader.ATLAS) } function progress() { (function loading() { Laya.loader.load([{ url: "icon/背包宝石UI.png" }, { url: "icon/交易所UI.png" }, { url: "res/atlas/0.atlas" }, { url: "res/a...
来源: Laya_社区 发布时间: 20180710
...ool.push(resInfo); this._statInfo.loaded++; this.event(/*laya.events.Event.PROGRESS*/"progress",this.getProgress()); } 调试结果 (no filename):1 //res/Bag.json [21357]:undefined c.warn @ (no filename):1 (no filename):1 url:res/Bag.json (no filename):1 content null (no filename):1 [warn]Retry t...
来源: Laya_社区 发布时间: 20200429
...回调参数值为true,否则为false。 * @param progress 加载进度回调。回调参数值为当前资源的加载进度信息(0-1)。 * @param type 资源类型。比如:Loader.IMAGE。 * @param priority ...
来源: Laya_社区 发布时间: 20180418
... } this.event(Event.PROGRESS, 0.3 + 1 / toloadPics.length * 0.6); return this._loadResourceFilter(Loader.IMAGE, URL.formatURL(toloadPics.pop())); } ...
来源: Laya_社区 发布时间: 20201130