大约有 8 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0033 秒)
...生近大远小的透视效果。 ```typescript //正交投影属性设置 camera.orthographic = true; //正交垂直矩阵距离,控制3D物体远近与显示大小 camera.orthographicVerticalSize = 7; //移动摄像机位置 camera.transform.translate(new Laya.Vector3(0, 26.5, 45)); //旋转摄像...
来源: Laya2.0_文档 发布时间: 20210715
...生近大远小的透视效果。 ```typescript //正交投影属性设置 camera.orthographic = true; //正交垂直矩阵距离,控制3D物体远近与显示大小 camera.orthographicVerticalSize = 7; //移动摄像机位置 camera.transform.translate(new Laya.Vector3(0, 26.5, 45)); //旋转摄像...
来源: Laya2.0_文档 发布时间: 20210714
...生近大远小的透视效果。 ```typescript //正交投影属性设置 camera.orthographic = true; //正交垂直矩阵距离,控制3D物体远近与显示大小 camera.orthographicVerticalSize = 7; //移动摄像机位置 camera.transform.translate(new Vector3(0, 26.5, 45)); //旋转摄像机...
来源: Laya2.0_文档 发布时间: 20210715
...r = Vector2.scalarLength(disVector2); //根据移动的距离进行缩放 _camera.transform.translate(new Vector3(0, 0, -0.01 * (distance2 - distance))); distance = distance2; } } else if (0 === touchCount){ _text.text = "触控点归零"; first = true; lastPosition.x = 0; lastPosition.y = 0; first ...
来源: Laya2.0_文档 发布时间: 20210715
...2.scalarLength(this.disVector2); //根据移动的距离进行缩放 this._camera.transform.translate(new Laya.Vector3(0, 0, -0.01 * (this.distance2 - this.distance))); this.distance = this.distance2; } } else if (0 === touchCount){ this._text.text = "触控点归零"; this.first = true; this.lastPo...
来源: Laya2.0_文档 发布时间: 20210715
...2.scalarLength(this.disVector2); //根据移动的距离进行缩放 this._camera.transform.translate(new Laya.Vector3(0, 0, -0.01 * (this.distance2 - this.distance))); this.distance = this.distance2; } } else if (0 === touchCount){ this._text.text = "触控点归零"; this.first = true; this.lastPo...
来源: Laya2.0_文档 发布时间: 20210715
...a.Scene3D) { //添加3D场景到舞台 Laya.stage.addChild(_Scene3D); let _camera = _Scene3D.getChildByName("Main Camera") as Laya.Camera; _camera.clearFlag = Laya.CameraClearFlags.Sky; //从场景中找到圆柱对象 let _cylinder = _Scene3D.getChildByName("Cylinder"); //从圆柱对象上获得...
来源: Laya2.0_文档 发布时间: 20210715
...项目代码里强制HDR效果。示例代码如下: ```typescript this.camera = new Laya.Camera(0, 0.1, 100); this.camera.enableHDR = false; //关闭HDR ``` 关闭HDR后,抗锯齿生效对比效果如图9-2所示。 ![10-2](img/10-2.png) (图10-2) #### 2.4 抗锯齿有效,为什么还有锯...
来源: Laya2.0_文档 发布时间: 20210715