大约有 103 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0038 秒)
...addChild(new Laya.Camera(0, 0.1, 100)) as Laya.Camera; camera.transform.translate(new Laya.Vector3(0, 3, 30)); //方向光 const directionLight =this.newScene.addChild(new Laya.DirectionLight()) as Laya.DirectionLight; directionLight.color = ne...
来源: Laya_社区 发布时间: 20210103
...et camera: Laya.Camera = new Laya.Camera(); camera.name = "Camera"; camera.transform.position = new Laya.Vector3( -6.87492561340332, 3.95000958442688, 1.06434166431427); camera.transform.rotation = new Laya.Quaternion( -0.19387270510196686, -0.6291995048522949, -0.16616787016391754, 0.73410463333129...
来源: Laya_社区 发布时间: 20180201
...; //加载到场景 scene.addChild(camera); //旋转摄像机角度 camera.transform.rotate(new Vector3( -25, 0, 0), false, false); //移动摄像机位置 camera.transform.position=new Vector3(0, 5, 10); //加入摄像机移动控制脚本 //camera.addComponent(CameraMoveScript); //添加蒙皮动...
来源: Laya_社区 发布时间: 20190416
... var y = 1; Laya.timer.frameLoop(30, this, function () { y = y + 1; camera.transform.lookAt(model.transform.position, new Laya.Vector3(0, 1, 0), false); camera.transform.rotate(new Laya.Vector3(0, y, 3), false, false); }); 我想让摄像机围绕一个模型旋转做动画,用Tween没有起到作...
来源: Laya_社区 发布时间: 20170907
...像机面板: ![](img/1.png)(图1) **支持导出的摄像机设置**: Transform选择组件。可以调整摄像机的**Position**位置,**Rotation**选择和**Scale**缩放。 Background背景,在没有天空盒的情况下,将选中的颜色应用到剩余屏幕。 Culling Mask 剔除遮...
来源: Laya2.0_文档 发布时间: 20210714
...mg/1.png)(图1) **支持导出的摄像机设置**: #### 通用的属性 Transform选择组件。可以调整摄像机的**Position**位置,**Rotation**选择和**Scale**缩放。 #### 摄像机属性 ##### Clear Flags 清除标志 支持项包括Skybox天空盒、Solid Color纯色、Depth only...
来源: Laya2.0_文档 发布时间: 20210715
...Sprite3D(Laya.PrimitiveMesh.createBox(1, 1, 1))) as Laya.MeshSprite3D; box.transform.rotate(new Laya.Vector3(0, 45, 0), false, false); var material: Laya.BlinnPhongMaterial = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/layabox.png", Laya.Handler.create(null, function (tex: Laya.Texture2D...
来源: Laya_社区 发布时间: 20190717
...万向锁的问题(不知道是不是我理解错了)。 3.想参考 transform.rotate()转化为四元素Quaternion来实现,可是Quaternion的属性是只读的,没有set方法,也没办法做缓动。 2017-08-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20170829
...; //加载到场景 scene.addChild(camera); //移动摄像机位置 camera.transform.position=new Laya.Vector3(-8, 4, 15); //旋转摄像机角度 camera.transform.rotate(new Laya.Vector3( -8, -25, 0), true, false); })); } } 2018-12-27 0 1 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: Seekers ...
来源: Laya_社区 发布时间: 20181227
...er.getChildByName("girl1") as Laya.Sprite3D; //模型缩放 this.roleModel.transform.localScale = new Laya.Vector3(0.8,0.8,0.8); //获取角色动画组件 this.roleAni = this.roleModel.getComponentByType(Laya.Animator) as Laya.Animator; //动画完成事件监听 this.roleAni.on(Laya.Event.COMPLETE...
来源: Laya_社区 发布时间: 20171113