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

大约有 3,176 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0072 秒)

861. 资源加载(TypeScript-3D基础(TS)-LayaAir3D之资源加载) [ 66%]

...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

862. Android替换游戏启动logo看不到设置的图片 [ 66%]

...自定义加载进度 1、设置config.js的 loadingView.loadingAutoClose=false;//false:自定义进度条 ture:使用laya默认进度条 2、设置加载进度(需要写在项目代码内,并非config.js内) var per=0; loadingView.loading(per);//per是0到100的整数 当数字等于100...

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

863. 鼠标交互-Hold [ 66%]

...如果正在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

864. ts 中能使用 装饰器吗 [ 66%]

... 快雪时晴 赞同来自: flys 可以的 tscongfig.json中noEmitHelpers=false 另外如果你用的 layaair版本在2.4及以上 需要自己安装 tslib npm install --save tslib 2020-03-09 1 3 分享 微博 QZONE 微信 flys 赞同来自: 有大佬安装过 tslib 吗?我实在是没办法...

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

865. 场景环境反射(ActionScript-3D基础(AS3)-LayaAir3D之场景渲染配置) [ 66%]

...= 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

866. 骨骼动画-Spine事件 [ 66%]

...; 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

867. 音乐与音效的播放与控制(ActionScript-LayaAir基础篇(AS3)-硬件设备相关) [ 66%]

...音键让音频自动跟随设备静音。需要将useAudioMusic设置为false。 ```javascript SoundManager.useAudioMusic=false; ``` ### 五、失去焦点的处理 如果不是手机全屏游戏,或者在浏览器里交互。有可能会导致切出游戏后,失去焦点,而失去焦点后...

来源: Laya2.0_文档 发布时间: 20210714

868. 3D模型旋转问题,鼠标移动之后,根据按下移动的X坐标差值判断左右旋转,但是会越转越快,请问是什么问题? [ 66%]

...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

869. image在相应loaded的时候,无法正确获取高度 [ 66%]

...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

870. 请问打包应用如何使用自己的Loading页面,使用html做的Loading页 [ 66%]

...你能详细指点一下么?我试过那个loadingView.loadingAutoClose=false;但是效果也仅仅是一直停留在0%,界面还是那个,其他也只是教改LOGO图片而已 Monica • 2017-05-14 17:05 @a058110356:设置完loadingView.loadingAutoClose=false之后,设置loadingView.loadi...

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