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

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

31. Tween.to 执行失败 [ 89%]

...行失败  //使精灵走到鼠标位置 function walkToMousePos(sprite){ console.log(Laya.stage.mouseX) ; console.log(Laya.stage.mouseY) ; console.log(sprite.x) ; console.log(sprite.y) ; var hDir = Laya.stage.mouseX>sprite.x? "right" : "left" ; var vDir = Laya.stage.mouseY>sprite.y? "down" :...

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

32. 微信小游戏wxmin图片加载有点问题 [ 89%]

...yFile({srcPath:tempFilePath,destPath:saveFilePath,success:function (data){ console.log(data, fileObj) if (!fileObj){ MiniFileMgr.onSaveFile(readyUrl,tempFileName); callBack !=null && callBack.runWith([0]); }else { console.log(fileObj.readyUrl == readyUrl, 'zhege') if (fileObj.readyUrl !=read...

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

33. socket.sent [ 89%]

...; } private openHandler(event: any = null): void { //正确建立连接; console.log("建立"+event);//没有写出 } private receiveHandler(msg: any = null): void { ///接收到数据触发函数 console.log("收到"+msg);;//没有写出 console.log(msg);;//没有写出 } private closeHandler(e: ...

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

34. 资源回收的清理不干净的bug [ 89%]

...l.name = i.toString();             }             console.log("add finished: ", myscene.numChildren);                  for(var i=0; i<myscene.numChildren; i++){                 console.log(myscene.getChildAt(i).name)         ...

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

35. UI加载完成后无法获取控件的大小——超详细版问题 [ 89%]

...fitDOMElements_scroll); } private fitDOMElements(a, b, c, d, e, f): void { console.log("----------the event resize-------") console.log("ref-resize:", this.myref.getBounds()); console.log("pan-resize", this.mypan.getBounds()); } private fitDOMElements_scroll(a, b, c, d, e, f): void { console.log("--...

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

36. 三个图好像无法绑定不同的事件? [ 89%]

... Laya.stage.addChild(img1); img1.on(Laya.Event.CLICK,this, function(name){ console.log(name);},['图1']); var img2 = new Laya.Sprite(); img2.loadImage('https://layaair.ldc.layabox.com/demo/h5/res/apes/monkey2.png',200,300,90,90); Laya.stage.addChild(img2); img2.on(Laya.Event.CLICK,this, function(nam...

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

37. socket无法连接服务器 [ 89%]

...         this.state_ = EConnectionState.eConnected;             console.log("conect to 127.0.0.1");         }         protected _onMessage(msg: any): void {             super._onMessage(msg);             console.log("receve msg : ");             console.log(msg); ...

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

38. 如何在游戏入口处获取对象的子对象 [ 89%]

...ed = function(){ this.pass = this.map.getLayerByIndex(0);//获取通行层 console.log(this.pass); } _proto.getLayer = function() { this.floor = this.map.getLayerByIndex(0);//获取通行层 console.log(this.pass); } console.log(this.map) return loadMap; })(Sprite);**游戏主入口** var Main = (fu...

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

39. dialog 里的数据已经获取到了,也赋值了但是页面没跟新,addChild好像无效果 [ 88%]

...d: { skin: 'comp/food' + foodid + '.png' }, food_txt: { text: foodtxt } // console.log(); } } console.log('+++++++++++++++++++') console.log(_super); console.log(fooddata); self.foodList.dataSource = fooddata;  //实例化角色容器 var foodBox = new Laya.Sprite(); //添加到舞台上 console.lo...

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

40. 加载-错误处理和进度 [ 88%]

..., this, onError); })(); function onAssetLoaded(texture) { // 使用texture console.log("加载结束"); } // 加载进度侦听器 function onLoading(progress) { console.log("加载进度: " + progress); } function onError(err) { console.log("加载失败: " + err); } })();module laya { import Event...

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