大约有 3,176 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0072 秒)
Laya_社区(2392) Laya3.0_api(242) Laya2.0_文档(138) Laya2.0_api(136) laya_api(135) Laya3.0_文档(63) Laya_示例(52) Laya2.0_示例(18)
...Vector3(0, 45, -60)); camera.transform.rotate(new Laya.Vector3(0, 180, 0), false, false); //相机视角控制组件(脚本) camera.addComponent(CameraMoveScript); //添加光照 var directionLight = _scene.addChild(new Laya.DirectionLight()); //光照颜色 directionLight.color = new Laya.Vector3(1...
来源: Laya2.0_文档 发布时间: 20210715
...自定义加载进度 1、设置config.js的 loadingView.loadingAutoClose=false;//false:自定义进度条 ture:使用laya默认进度条 2、设置加载进度(需要写在项目代码内,并非config.js内) var per=0; loadingView.loading(per);//per是0到100的整数 当数字等于100...
来源: Laya_社区 发布时间: 20160918
...如果正在hold,则播放放开的效果 if (isApeHold) { isApeHold = false; Tween.to(ape, { "scaleX": 0.8, "scaleY": 0.8 }, 300); } else // 如果未触发hold,终止触发hold Laya.timer.clear(this, onHold); Laya.stage.off(Event.MOUSE_UP, this, onApeRelease); } })();module laya { import Sprit...
来源: Laya_示例 发布时间: 20241119
... 快雪时晴 赞同来自: flys 可以的 tscongfig.json中noEmitHelpers=false 另外如果你用的 layaair版本在2.4及以上 需要自己安装 tslib npm install --save tslib 2020-03-09 1 3 分享 微博 QZONE 微信 flys 赞同来自: 有大佬安装过 tslib 吗?我实在是没办法...
来源: Laya_社区 发布时间: 20200309
...= new Vector3(0, 1.75, 2); teapot.transform.rotate(new Vector3(-90, 0, 0), false, false); })); //实例PBR材质 var pbrMat:PBRStandardMaterial = new PBRStandardMaterial(); //开启该材质的反射 pbrMat.enableReflection = true; //设置材质的金属度,尽量高点,反射效果更明显 pb...
来源: Laya2.0_文档 发布时间: 20210715
...; if (mCurrIndex >= aniNum) { mCurrIndex = 0; } mArmature.play(mCurrIndex, false); } onEvent(e) { const Tween = Laya.Tween, Handler = Laya.Handler; let tEventData = e; Laya.stage.addChild(mLabelSprite); mLabelSprite.pos(mStartX, mStartY); mLabelSprite.graphics.fillText(tEventData.name, 0, 0, "20px A...
来源: Laya2.0_示例 发布时间: 20241119
...音键让音频自动跟随设备静音。需要将useAudioMusic设置为false。 ```javascript SoundManager.useAudioMusic=false; ``` ### 五、失去焦点的处理 如果不是手机全屏游戏,或者在浏览器里交互。有可能会导致切出游戏后,失去焦点,而失去焦点后...
来源: Laya2.0_文档 发布时间: 20210714
...stMouseX = mX; this.isDown = true; } private mouseUp():void{ this.isDown = false; } public rotate(vec:Laya.Vector3):void{ this.entity.transform.rotate(vec,true,false); } 2018-01-13 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 ...
来源: Laya_社区 发布时间: 20180113
...his.height, this.scaleX, this.scaleY); var createOption: any = { isStatic: false, }; this.matterBody = Matter.Bodies.rectangle(this.x, this.y, this.width, this.height, createOption); Matter.World.add(GameMain.instance.engine.world, this.matterBody); this.matterBody.layaSprite = this; Matter.Events.o...
来源: Laya_社区 发布时间: 20180530
...你能详细指点一下么?我试过那个loadingView.loadingAutoClose=false;但是效果也仅仅是一直停留在0%,界面还是那个,其他也只是教改LOGO图片而已 Monica • 2017-05-14 17:05 @a058110356:设置完loadingView.loadingAutoClose=false之后,设置loadingView.loadi...
来源: Laya_社区 发布时间: 20170514