大约有 23 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0036 秒)
...ge多做了一件事Laya.loader.load。 __proto.load=function(url,complete,progress,type,priority,cache,group,ignoreCache){ var _$this=this; (priority===void 0)&& (priority=1); (cache===void 0)&& (cache=true); (ignoreCac...
来源: Laya_社区 发布时间: 20191122
...时更新版本那个加载效果吗?如果是的话就是一个普通的progress组建就可以搞定了,如果是网页的话,你可以能要了解下网页操作dom节点相关东西才能做! 2017-12-31 0 0 分享 微博 QZONE 微信 gaowei2024 赞同来自: var Loadings=(function(_super...
来源: Laya_社区 发布时间: 20171230
Laya.loader.create中的progress回调好像不准确? 如图,我加载二十多M的资源(大概二三十个文件),进度回调只有一次,是不是这个回调有问题? 附件 : --> 2018-03-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...
来源: Laya_社区 发布时间: 20180321
...条,进度不能重置问题 官方提供的进度条示例 只能设置progress.png的九宫, 里面的progress$bar.png 无法设置,然而拉长以后效果简直无法直视 问题状态 最新活动: 2018-06-19 11:47 浏览: 1138 关注: 2 人 ayiui4566 • 2018-06-23 11:23 额,我用自...
来源: Laya_社区 发布时间: 20180615
... alpha遮罩 用法: var texture: Laya.Texture = Laya.Loader.getRes("progress.png"); this.spe = new coolDownSprite(); this.spe.init(texture); //this.spe.initWithoutTexture(128, 128); this.spe.pos(300, 350); this.spe.setProgress(this.progress); Laya.stage.addChild(this.spe); --------------------...
来源: Laya_社区 发布时间: 20170606
求绘制遮罩会引起黑屏的解决办法 this.progressvalue = new Laya.Image("Game/bar_yuan.png"); this.progressvalue.anchorX = 0.5; this.progressvalue.anchorY = 0.5; this.progressvalue.pos(15, 15); //记录宽度 this.width_x = this.progress.width + 3; this.vmask = new Laya.Sprite(); this....
来源: Laya_社区 发布时间: 20180725
...置 Laya.timer.frameLoop(1,this,onLoop); private function onLoop():void { progress++; //最高100%进度 if(progress>=100) { progress=100; this.tips.text="游戏加载完毕,即将进入游戏..." this.panel.visible=false; this.gobtn.visible=true; }else { this.pro.value=progress/100; this.tips....
来源: Laya_社区 发布时间: 20180121
...进度 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
...加载修改的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
... } this.event(/*laya.events.Event.PROGRESS*/"progress",0.3+1 / toloadPics.length *0.6); return this._loadImage(toloadPics.pop()); 2019-02-02 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...
来源: Laya_社区 发布时间: 20190202