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

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

451. 父元素,子元素,兄弟元素 [ 54%]

... let parent:Laya.Sprite = child.parent;//父 let len = parent.numChildren; for(var i = 0; i < len; i++){ let value = parent.getChildAt(i); if(value != child) { //兄弟 } else{ //自己 } } 2018-09-01 0 1 分享 微博 QZONE 微信 谢春 赞同来自: 可能你所说的是点击事件穿透问...

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

452. 内存释放问题 [ 54%]

...变化,就是还有res/atlas/effect/playerEff/shengji.json的信息。 for (let i = len - 1; i >= 0; i--) {             key = this._poolDic.keys             temp = this._poolDic.get(key);             if (temp) {                 this._poolDic.r...

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

453. Image和HtmlImageElement加载同一张图会显示不出来 [ 54%]

... // 这个循环的目的,是保证下面Image的图不会立即加载 for (int i = 0; i < 10; ++i) {      var url:String = "res/xxx" + i + ".png";      Laya.loader.load(url); }   // 先Image var img:Image = new Image(); img.skin = "res/test1.png"; img.pos(100, 100); // 再Html var html ...

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

454. 关于功能模块资源回收预疑问 [ 54%]

...er.create(this, onAssetsLoaded)); private function onAssetsLoaded():void { for(var i:int = 0, len:int = assets.length; i < len; ++i) { var asset:Image = assets[i]; //查看log,清理前资源一直在内存中 console.log(Laya.loader.getRes(asset)); //调用清理方法 Laya.loader.clearRes(ass...

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

455. ios 过审被打回 [ 54%]

... app by means other than the in-app purchase API, which is not appropriate for the App Store. 只接了内购 为啥还有这个问题 框架里还有其他的购买方式么? 2018-04-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链...

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

456. 模板@prop如何使用枚举 [ 54%]

...oseEffect = 2 };  function ENUM_ChangeString(enumObject) { let reslut=""; for (var entry in ENUM_Effect) { reslut=reslut+","+entry; }  return reslut; } /** @prop {name:targetEffect, tips:"UI特效", type:ENUM_Effect, default:null}*/ private targetEffect:ENUM_Effect = null; //这样写实不行的 ...

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

457. 用正则的方式检验打成APP会有问题 [ 54%]

...,"i");              if(param!=null){                 for(var i:int=0;i<param.length;i++){                     if(param[i][1]!=""){                         if(pat.test(param[i][1])==false)                            {    ...

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

458. 性能测试-卡通人物2 [ 54%]

...is, gameLoop); })(); function createCharacters() { var char; var charSkin; for (var i = 0; i = 0; i--) { characters[i].update(); } if (Laya.timer.currFrame % 60 === 0) { text.text = Stat.FPS.toString(); } } })();module laya { import Stage = Laya.Stage; import Text = Laya.Text; import Stat = Laya.Sta...

来源: Laya_示例 发布时间: 20241119

459. Ignored attempt to cancel a touchmove event with cancelable=false [ 54%]

...解决 Ignored attempt to cancel a touchmove event with cancelable=false, for example because scrolling is in progress and cannot be interrupted. 附件 : --> 2020-05-12 添加评论 悬赏 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复...

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

460. [0]Timer的偶发性Bug [ 54%]

...rget) { this.timers.length = 0; return; } var length = this.timers.length; for (var i = 0; i < length; i++) { var t: TimerLite = this.timers[i]; if (t.target == target) { t.destory(); } } } 2023-11-15 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被...

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