大约有 4,102 项符合查询结果, 库内数据总量为 31,625 项。 (搜索耗时: 0.0078 秒)
Laya_社区(3323) Laya2.0_文档(296) Laya_示例(141) Laya2.0_示例(117) Laya3.0_文档(116) Laya3.0_api(94) Laya2.0_api(9) laya_api(6)
list的_dataSource问题。 list.renderHandler = new Handler(this, this.onInitItem); list.array=[{a:1},{a:2}]; private onInitItem(item,index){} 在 onInitItem 中怎么得到他的数据?list.array 里面的那个 {a:1} 我看源码中有 _dataSource ,但是方法不是公开的。要...
来源: Laya_社区 发布时间: 20180126
...进预制体? Laya.loader.load("prefab/gk2v1.json",Laya.Handler.create(this,function(pref:Laya.Prefab){ var gkpref:Laya.Prefab = new Laya.Prefab(); gkpref.json = pref; var OBJ = Laya.Pool.getItemByCreateFun("gk2v1",gkpref.create,gkpref); this.Scene.addChild(OBJ); })); 附件 : --> ZMW.zip 2020-10-...
来源: Laya_社区 发布时间: 20201022
...FileToDicData(FileManager.getPath(RunConfig.sourcePath,RunConfig.htmlFile),this.noVersionDic); LayaAirProjectPack.addFileToDicData(FileManager.getPath(RunConfig.sourcePath,"code.js"),this.noVersionDic); LayaAirProjectPack.addFileToDicData(FileManager.getPath(RunConfig.sourcePath,"main...
来源: Laya_社区 发布时间: 20181022
... Laya.stage.event(Event.MOUSE_DOWN); // this.rankView.list["_content"].event(Event.MOUSE_DOWN,null); } } // function showRank(str:String = ""):void{ ...
来源: Laya_社区 发布时间: 20180525
...说明 1、在laya.d3.js中找到Camera.render函数 2、render函数中,this._prepareCameraToRender();这一行后面添加如下代码 if(this._scene.lightCullingMask && this._scene.lightCullingMask instanceof Function){this._scene.lightCullingMask(scene,this);} 3、对想要开启灯光...
来源: Laya_社区 发布时间: 20200110
...件里面的size字段不知道是做什么,反正改了也没用。 this.skyBox = new Laya.SkyBox(); this.mainCamera.clearFlag = Laya.BaseCamera.CLEARFLAG_SKY; this.mainCamera.sky = this.skyBox; this.skyBox.textureCube = Laya.TextureCube.load("skybox/sky_sun.ltc"); { "px": "sky_sun1.jpg...
来源: Laya_社区 发布时间: 20180511
...ntView设置为activity_main,laya的gameView添加到RelativeLayout来。this.setContentView(R.layout.activity_main); this.gameContainer = findViewById(R.id.game_container); this.banner_container = findViewById(R.id.banner_container); View gameView = mPlugin.game_plugin_get_view(); this.gameContai...
来源: Laya_社区 发布时间: 20191204
...th = 1280; iconSpr.height = 640; iconSpr.addChild(img); btn.on(Event.CLICK,this,runGame1); } private function runGame1():void { xNum = Math.random()*7 - 3; yNum = Math.random()*7 - 3; Laya.timer.loop(20,this,onRun); Laya.timer.frameLoop(10,this,refresh); } private function refresh():void { IconSpr.g...
来源: Laya_社区 发布时间: 20180113
...限嵌套。 修复如下 get angularVelocity() { if (this._btColliderObject) { var phtqua = this._btColliderObject.angularVelocity; - this.angularVelocity.setValue(phtqua.x, phtqua.y, phtqua.z); + this._angularVelocity.setValue...
来源: Laya_社区 发布时间: 20210908
...t.loadFont()加载多个地址导致位图输出重 构造函数中是 this.setDataByTextureList("\n6+", ["res/fontadd/num6.fnt","res/fontadd/num+.fnt"]); private setDataByTextureList(value:string, urls:string[]){ for(var i=0;i<urls.length;i++){ var bitmapFont: BitmapFont = new BitmapFo...
来源: Laya_社区 发布时间: 20190705