大约有 35 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0025 秒)
...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
...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
...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
...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
...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
... 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
....timer.frameLoop(1, this, function() { //设置曝光强度 mat.exposure = Math.sin(exposureNumber += 0.01) + 1; mat.rotation += 0.01; }); })); ``` ![](img/1.gif)(图1)
来源: Laya2.0_文档 发布时间: 20210715
....timer.frameLoop(1, this, function() { //设置曝光强度 mat.exposure = Math.sin(exposureNumber += 0.01) + 1; mat.rotation += 0.01; }); })); ``` ![](img/1.gif)(图1)
来源: Laya2.0_文档 发布时间: 20210715
...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
...缩放图片的时候会导致pivot(轴心点)也要缩放。2、使用Math的cos和sin的时候需要传入的是弧度值,并非角度。 2018-09-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 hj 赞同...
来源: Laya_社区 发布时间: 20180925