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

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

31. Laya.MiniAdpter.downLoadFile缓存的文件无法读取的问题 [ 85%]

...存二进制文件,逻辑如下:   public Request(url:string):void { console.log("url: " + url); if (Laya.Browser.onMiniGame) { var args = {url:url, handler:null}; var handler = Laya.Handler.create(this, this.OnDownloadFileInWxOk, [args], false); args.handler = handler; Laya.MiniAdpter.downLoad...

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

32. 预制体添加刚体后,和其它刚体碰撞后不能修改角度和位置 [ 85%]

...ion;         if(other.label === "heng"){             console.log("角度"+this.owner.rotation);             this.owner.rotation=180-n;             console.log("角度"+this.owner.rotation);         }          if(other.label === "shu"){...

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

33. JQ集成到Laya二次封装 [ 85%]

...======= demo2 ======================= JQ(aWater).on('click', function () { console.log( JQ(this).index() );//不传 匹配父级元素下的子元素开始算索引 // console.log( JQ(this).index(aWater) );//传数组,从当前数组开始算索引 // console.log( JQ(this).siblings(aWater).remove(...

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

34. 图片添加点击事件 有的不生效 [ 85%]

...nFriend); this.v_btn_shop.on(Laya.Event.CLICK, this, this.onClickBtnShop); console.log("init main scene"); } //点击羁绊 private onClickBtnBoy():void { console.log("click onClickBtnBoy"); } private onClickBtnFriend():void { console.log("click onClickBtnFriend"); } private onClickBtnShop():void { ...

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

35. 精灵添加名称 [ 85%]

...   sp=new Sprite();          sp.name = i.toString();         console.log(sp.name);         sp = project.drawsomething(20, 20+60*i, "#eeb9b3");         sp.on(Event.CLICK,this, onsp);         Laya.stage.addChild(sp);   }   private function onsp(e:Event){         ...

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

36. 使用getChildByName()无法得到子节点对象 [ 84%]

...    cell._childs[1].text=data.listNumber.text;             console.log(index)             //根据子节点的名字listNumber,获取子节点对象。             var listNumber1 = cell.getChildByName("text");             // var text = cell.getC...

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

37. 获取位置信息 · LayaAir3.0文档 · LAYABOX [ 84%]

...r.create(this, this.onSuccess), Laya.Handler.create(this, this.onError) ); console.log("click"); } // 成功获取位置后触发 onSuccess(info: Laya.GeolocationInfo): void { console.log('经纬度: (' + info.longitude + '°, ' + info.latitude + '°),精确度:' + info.accuracy + 'm'); if (info...

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

38. Ts简单对象池 [ 84%]

...化则必须保证池中最少存在1个 if (this.m_ObjectPoolDic[key]){ console.log("初始化有误,该值已经有对应的 对象池了"); } else{ this.m_ObjectPoolDic[key]=new QueueT<Laya.MeshSprite3D>(); this.m_ObjectPoolDic[key].push(MeshSprite); } }  //按照编号取出对应对象...

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

39. 两个移动的简单物体 onTriggerEnter 无法触发 (有悬赏) [ 84%]

...方法为虚方法,使用时重写覆盖即可 */ onTriggerEnter(other){ console.log("onTriggerEnter"); };  onTriggerStay(other){ console.log("onTriggerStay"); };  onCollisionEnter(other){ console.log("onCollisionEnter"); };  onCollisionStay(collision){ console.log("onCollisionStay"); } } 附...

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

40. 动态阴影被切割了?为啥没有显示完成的阴影 [ 84%]

...{ var box = scene.addChild(new myCube(0.1, 0.1, 11.5, colorCalc(), 0, 1)); console.log(box); } function addTestBox() { var box = scene.addChild(new myCube(0.1, 0.1, 11.5, colorCalc(), 0, 1)); console.log(box); } function addFirstBox() { var box = scene.addChild(new myCube(1, 1, 0.5, colorCalc(), 0))...

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