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

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

21. 如何使用3D场景2D人物进行混合开发(JavaScript-3D基础(JS)-LayaAir3D之高级应用) [ 66%]

...e&name=Secne3DPlayer2D)) ```typescript //变换位置 this._position.x = Math.sin(this.scaleDelta += 0.01) * 2; this._position.z = Math.cos(this.scaleDelta += 0.01) * 2; //修改球的位置 this.sphere.transform.position = this._position; //计算位置 this._camera.viewport.project(this._positio...

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

22. 如何使用3D场景2D人物进行混合开发(TypeScript-3D基础(TS)-LayaAir3D之高级应用) [ 66%]

...e&name=Secne3DPlayer2D)) ```typescript //变换位置 this._position.x = Math.sin(this.scaleDelta += 0.01) * 2; this._position.z = Math.cos(this.scaleDelta += 0.01) * 2; //修改球的位置 this.sphere.transform.position = this._position; //计算位置 this._camera.viewport.project(this._positio...

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

23. 如何使用3D场景2D人物进行混合开发(ActionScript-3D基础(AS3)-LayaAir3D之高级应用) [ 65%]

...e&name=Secne3DPlayer2D)) ```typescript //变换位置 this._position.x = Math.sin(this.scaleDelta += 0.01) * 2; this._position.z = Math.cos(this.scaleDelta += 0.01) * 2; //修改球的位置 this.sphere.transform.position = this._position; //计算位置 this._camera.viewport.project(this._positio...

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

24. 请大家帮助优化一下这个抛物线的代码 [ 65%]

...ate centerX:number = 0; private centerY:number = 0; private angle:number = Math.PI; private angle2:number = 0; private radius:number = 150; //半径 private speed:number = .05; private points:Array<any> = ; private i:number = 0; constructor() { Laya.init(1100, 619, Laya.WebGL); Laya.loader.loa...

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

25. 使用blendMode=add模式时,某些手机上无法正常显示,出现黑底 [ 64%]

...mage();             image.skin = "res/atlas/clanwar_bg.jpg?" + Math.random();             Laya.stage.addChild(image);              var index:int = 0;             Laya.stage.timerLoop(1, this, function():void{index++;image.alpha = Math.sin(Math.PI*2*(i...

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

26. putimagedata 不起作用 [ 62%]

... l; i += 4) { if (data[i]!== 0) { console.log(data[i]) } x = i / 4 % w y = Math.ceil(i / 4 / w) - 1 d = Math.ceil(20 * Math.sin(0.071 * y)) if (x + d <= 0 || x + d > w) { data[i + 3] = 0 } else { data[i] = copy[i + d * 4] data[i + 1] = copy[i + 1 + d * 4] data[i + 2] = copy[i + 2 + d * 4] } } ...

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

27. SkyBoxMaterial材质详解(TypeScript-3D基础(TS)-天空材质详解) [ 61%]

....timer.frameLoop(1, this, function() { //设置曝光强度 mat.exposure = Math.sin(exposureNumber += 0.01) + 1; mat.rotation += 0.01; }); })); ``` ![](img/1.gif)(图1)

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

28. SkyBoxMaterial材质详解(JavaScript-3D基础(JS)-天空材质详解) [ 61%]

....timer.frameLoop(1, this, function() { //设置曝光强度 mat.exposure = Math.sin(exposureNumber += 0.01) + 1; mat.rotation += 0.01; }); })); ``` ![](img/1.gif)(图1)

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

29. SkyBoxMaterial材质详解(ActionScript-3D基础(AS3)-天空材质详解) [ 61%]

...r.frameLoop(1, this, function():void { //设置曝光强度 mat.exposure = Math.sin(exposureNumber += 0.01) + 1; mat.rotation += 0.01; }); })); ``` ![](img/1.gif)(图1)

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

30. 来说说本人这两个月用laya引擎比较坑的两点吧 [ 59%]

...缩放图片的时候会导致pivot(轴心点)也要缩放。2、使用Math的cos和sin的时候需要传入的是弧度值,并非角度。 2018-09-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 hj 赞同...

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