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

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

1. 自定义组件时,设置组件子节点imageskin时,路径为layaIde路径而非项目路径 [ 100%]

...n; import laya.ui.Image; /** * ... * @author Caixiansheng */ public class HProgressSlider extends HSlider { /**@private */ protected var _progress:Image protected var _proMask:Sprite; public function HProgressSlider(skin:String=null) { super(skin); } override protected function initialize():void{ su...

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

2. JS进度条加载问题 [ 88%]

...加载修改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

3. 分享一个Shader版CoolDown实现 [ 80%]

... 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

4. 分享:LayaAir下Loading进度条制作(ActionScript 3.0) [ 69%]

...进度,示例如下:package { import laya.net.Loader; import laya.ui.ProgressBar; import laya.utils.Handler; public class LoadingDemo { private var progressBar:ProgressBar; public function LoadingDemo() { Laya.init(550,400); //预加载loading条资源 var pro1:Object={url:"loads/progressBar.png...

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

5. 用javascript如何实现游戏登录游戏前资源加载进度,如何将图片,音乐等素材加载到界面通过加载条显示加载进度 [ 59%]

...條 然後思路大概就是下面codeclass LoaderManager { private progressUI: UIBase; private token; constructor(token) { Laya.loader.load([{ url: "res/ui/LoadProgress.fui", type: Loader.BUFFER }], Handler.create(this, this.loadProgress)) this.token = token; } public loadProgress() { this.pr...

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

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

...fig.GameHeight - this.txt.height) * 0.5; this.addChild(this.txt); } _proto.progress = function(value){ this.txt.text = "Loading " + parseInt(value * 100) + "%"; } })();[/i][i](function () { /** * 游戏介绍 */ function GameInfo(){ this.bg = null; this.txt = null; GameInfo.__super.call(this); this....

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

7. LayaAir能做RPG吗?不要问我能不能,因为我已经在做 - 杀意来袭 [ 50%]

....Event.COMPLETE, e);             }         }         private progressHandler(e: any): void {             console.log("netconnection progress:", e);             this.event(Laya.Event.PROGRESS, e);         }         private errorHandler(e: any): void {           ...

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