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

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

421. 关于LayaBox启动的问题。 [ 73%]

...tivity :com.klzz.platform/.PlatformActivity I/wpa_supplicant( 4401): [CTRL_IFACE] wlan0: 'SIGNAL_POLL' D/Analytics.UploadTask.4837.621( 4837): [uploadEventLog] D/Analytics.DBMgr.4837.621( 4837): [find] DBMgr,sql:SELECT * FROM log ORDER BY priority DESC , time DESC LIMIT 20 D/Analytics.LogStoreMgr.48...

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

422. Texture内存回收(ActionScript-2D进阶篇(AS3)-性能优化) [ 73%]

...his, onKeyDown); Stat.show(); } private function onKeyDown(e:Event):void { if (e.keyCode === Keyboard.H) { sp.visible = false; //隐藏界面,清理资源 Laya.loader.clearTextureRes("res/bg.jpg"); Laya.loader.clearTextureRes("res/fighter.atlas"); } else if (e.keyCode === Keyboard.S) { //显示界...

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

423. Texture内存回收(ActionScript-2D进阶篇(AS3)-性能优化) [ 73%]

...his, onKeyDown); Stat.show(); } private function onKeyDown(e:Event):void { if (e.keyCode === Keyboard.H) { sp.visible = false; //隐藏界面,清理资源 Laya.loader.clearTextureRes("res/bg.jpg"); Laya.loader.clearTextureRes("res/fighter.atlas"); } else if (e.keyCode === Keyboard.S) { //显示界...

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

424. 性能测试-虫子(慎入) [ 73%]

...) { let maggotContainer; for (let i = 0; i wb.x + wb.width) x -= wb.width; if (y wb.y + wb.height) y -= wb.height; maggot.pos(x, y); } tick += 0.1; } } new PerformanceTest_Maggots();module laya { import Sprite = Laya.Sprite; import Browser = Laya.Browser; import Handler = Laya.Handler; import Stat =...

来源: Laya2.0_示例 发布时间: 20241120

425. TypeScript语法问题,泛型 [ 72%]

... class, new() { private static T instance; public static T GetInstence() { if (null == instance) { instance = new T(); } return instance; } } 这样我在其他地方,继承Class1,就可以直接类名.GetInstence()获取该类的实例 2018-06-19 添加评论 免费帖 --> 分享 微博 QZONE ...

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

426. swf转成H5资源显示超出原有范围 [ 72%]

...      public function Main():void         {             if (stage) init();             else addEventListener(Event.ADDED_TO_STAGE, init);         }                  private function setWindowFullSize() : void         {             var stag...

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

427. Laya.loader.create中的progress回调好像不准确? [ 72%]

...ed"); isLoaded = true; }), Laya.Handler.create(this, function (pro) { if (debug) console.log("Loading progresss : " + pro); }, null, false), Laya.Scene); Monica • 2018-03-21 11:01 @jinfawu:能否提供一个预加载多个文件的Demo呢?我看下 jinfawu • 2018-03-21 11:28 @Mo...

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

428. UI-ProgressBar [ 72%]

...onChange); Laya.timer.loop(100, this, this.changeValue); } changeValue() { if (this.progressBar.value >= 1) { this.progressBar.value = 0; } this.progressBar.value += 0.05; } onChange(value) { console.log("进度:" + Math.floor(value * 100) + "%"); } } new UI_ProgressBar();module laya { import Stag...

来源: Laya2.0_示例 发布时间: 20241120

429. ide跑没问题,安卓包跑报错 [ 72%]

...义:bodyArr: Array<Sprite> = [] 被调用的函数 bodyCheck() { if (this.bodyArr.length <= 0) return; if (this.eatBean >= this.bodyBeanNum && this.bodyArr.length < this.bodyMaxNum) { let addBodyNum = Math.floor(this.eatBean / this.bodyBeanNum) let x = this.bodyArr[this.body...

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

430. List 组件做的手风琴Demo [ 72%]

...ex])         //当索引相同时 BOX 高度改变         if(this.index_num ==index){             cell.height=80;             cell.y =index*30;             //显示图片          img2.visible =true;           }else        ...

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