大约有 375 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0039 秒)
... console.log("1111111111",this.hitResult); // if (this.outs.length != 0) // { // console.log("碰撞到物体",this,this.outs[0]); // } } 附件 : --> 2022-05-06 添加评论 免费帖 --> 分享 微博 QZONE 微信...
来源: Laya_社区 发布时间: 20220506
...eHeroList(HeroMessage.HERO_TYPE_ALL,2); this.herolist.repeatX = hasHeroArr.length; this.herolist.dataSource = hasHeroArr; this.herolist.scrollTo(8) 大体是这样的
来源: Laya_社区 发布时间: 20171227
...hts.concat(scene._pointLights._elements); for (let i = 0; i < allLights.length; ++i) { let light = allLights[i]; for (let layer = 0; layer < 32; ++layer) { let layerMask = Math.pow(2,layer); light.active = (camera.cullingMask & layerMask) && (light.cullingMask & layerMask); if ...
来源: Laya_社区 发布时间: 20200110
...ingArray = tempReturnString.split(","); for (i = 0; i < tempStringArray.length; i++) { var img = new Laya.Image(); //加载显示图片, var tempImageName = "ui/poke_" + tempStringArray[i] + ".png"; img.loadImage(tempImageName, i * 30, 0); this.addChild(img); var poker = new Poker(img,tempImage...
来源: Laya_社区 发布时间: 20180130
...: 1048 关注: 1 人 标 • 2018-05-14 15:36 n 的值大于 this._childs.length 的值,然后报错。 标 • 2018-05-14 15:47 偶然会报错。偶尔不会
来源: Laya_社区 发布时间: 20180514
...e setDataByTextureList(value:string, urls:string[]){ for(var i=0;i<urls.length;i++){ var bitmapFont: BitmapFont = new BitmapFont(); var url=urls[i]; bitmapFont.loadFont(url, new Handler(this, this.onFontLoaded, [bitmapFont,value])); } private onFontLoaded(bitmapFont: BitmapFont,value1:string):voi...
来源: Laya_社区 发布时间: 20190705
....getChildIndex(node); if (index !== this._children.length - 1) { this._children.splice(index, 1); this._children.push(node); this._childChanged(); } ...
来源: Laya_社区 发布时间: 20191203
...3tiao","4tiao","5tiao"]; var _dataSource_=[]; for(var i = 0;i<this.data.length;++i) { var _data_={ skin:"Images/"+this.data[i]+".jpg" }; _dataSource_.push(_data_); } this.selfHand.dataSource = _dataSource_; this.selfHand.selectEnable = true; } Laya.class(Index,"Index",_super); return Index; })(In...
来源: Laya_社区 发布时间: 20170914
... touches 属性 let touches = e.touches; if (touches && touches.length == 2) { preRadian = Math.atan2( touches[0].stageY - touches[1].stageY, touches[0].stageX - touches[1].stageX); Laya.stage.on(Event.MOUSE_MOVE, this, this.onMouseMove); } } 2019-09-25 0 0 分享 微博 QZONE 微信 1...
来源: Laya_社区 发布时间: 20190919
... start, end, { closest: this.opts.closest }); if (_everyPath && _everyPath.length > 0) { getRealPosition(start, this._everyPath); } }); ``` > 通过3D世界的x,z换算出对应的网格索引,并且通过astar路径再转换为3D世界路径 ```typescript /** * 得到整数的网格索引 */ ge...
来源: Laya2.0_文档 发布时间: 20210714