大约有 4,034 项符合查询结果, 库内数据总量为 30,910 项。 (搜索耗时: 0.0081 秒)
Laya_社区(3264) Laya2.0_文档(296) Laya_示例(141) Laya2.0_示例(117) Laya3.0_文档(107) Laya3.0_api(94) Laya2.0_api(9) laya_api(6)
... 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
....getInstance().uninit(); } public void login( final String userId){ that = this;//反射需要指定的对像,在抛到主线程后this的对像不一样了,先把他用that存这,如果你们有更好的办法可以说下,我是临时用两天时间边学边做,不太懂JAVA(PS:压根...
来源: Laya_社区 发布时间: 20170722
...sicsSimulation这个类,但下面这么用一直没有东西,求指点 this.mousePos=new Vector2(MouseManager.instance.mouseX, MouseManager.instance.mouseY); camera.viewportPointToRay(this.mousePos,ray); this.ps.rayCast(ray,this.rayCastHit,500, 0); 2018-12-20 添加评论 免费帖 --> 分享 ...
来源: Laya_社区 发布时间: 20181220
...就没问题 模型x转了-90度 console.log(angle, " lastangel ", this.owner.transform.rotationEuler.y) this.lastAngle = this.owner.transform.rotationEuler.y; this.owner.transform.rotate(new Vector3(0, angle - this.lastAngle, 0), false, false) 打印出来看到y方向角度一直在变。 ...
来源: Laya_社区 发布时间: 20190716