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

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

21. 报无法找到资源,未升级ide之前不报错 [ 78%]

...本场景要用的 ["resources/UI/image.png", "resources/UI/progress.png", "resources/UI/progress$bar.png","resources/UI/images/dsgame/banner2.jpg"] ).then(() => { let resArr: Array<any> = [ { url: "resources/UI/images/dsgame/bgImage2.jpg", ...

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

22. laya.ui.ProgressBar_API3.0 [ 73%]

...blic/Protected All Inherited Externals Only exported Menu Globals "laya/ui/ProgressBar" ProgressBar Class ProgressBar ProgressBar 组件显示内容的加载进度。 example 以下示例代码,创建了一个新的 ProgressBar 实例,设置了它的皮肤、位置、宽高、网格等信息,...

来源: Laya3.0_api 发布时间: 20231115

23. 网络通信 · LayaAir3.0文档 · LAYABOX [ 73%]

...,错误事件等 /** * 请求进度改变时调度。 * @eventType Event.PROGRESS * */ /*[Event(name = "progress", type = "laya.events.Event")]*/ /** * 请求结束后调度。 * @eventType Event.COMPLETE * */ /*[Event(name = "complete", type = "laya.events.Event")]*/ /** * 请求出错时调度...

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

24. 分享:LayaAir下Loading进度条的制作(ActionScript 3.0) [ 68%]

...进度,示例如下: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

25. 引擎中的修改意见 [ 65%]

...mp; callBack.runWith([1, data]); } }); //获取加载进度 downloadTask.onProgressUpdate(function (data:Object):void { callBack != null && callBack.runWith([2, data.progress]); }); }     2018-08-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...

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

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

...條的 然後思路大概就是下面的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

27. 求HTTP相关的文档或者例子谢谢了 [ 64%]

...nts.HTTPStatusEvent; import flash.events.IOErrorEvent; import flash.events.ProgressEvent; import flash.events.SecurityErrorEvent; import flash.net.URLLoader; import flash.net.URLLoaderDataFormat; import flash.net.URLRequest; import flash.net.URLRequestMethod; import flash.net.URLVariables; public cl...

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

28. laya.utils.Tween [ 63%]

...对目标对象属性的渐变。 Public Properties PropertyDefined By  progress : Number[write-only] 设置当前执行比例Tween  update : Handler更新回调,缓动数值发生变化时,回调变化的值TweenPublic Methods  MethodDefined By  clear():void 停止并清理当前缓动...

来源: laya_api 发布时间: 20170929

29. 十几秒以后动画渲染时间变长,帧率变慢,是怎么回事? [ 62%]

...= <Area>{ w: -1, h: -1 };  /** 血条 */ private _blood_chart: Laya.ProgressBar; // toset: private _blood_area: Area = new AreaEntity( 100, 20 ); public _blood_value: number;  /** 魔鬼 */ private _demon_ani: Laya.Animation; // toset: private _demon_area: Area = new AreaEntity( 100, 100); ...

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

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

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