大约有 29 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0038 秒)
...制体中的相机上<Laya.Camera>dude1.getChildAt(0).addComponent(CameraMoveScript); 2020-11-25 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁定, 无法添加新回复 发起人 小火火 相关问题 请问在layaIDE里,怎么调用微...
来源: Laya_社区 发布时间: 20201125
...aya.Vector3( -15, 0, 0), true, false); camera.addComponent(CameraMoveScript); //添加光照 var directionLight= new Laya.DirectionLight(); this.scene.addChild(directionLight); directionLight.colo...
来源: Laya_社区 发布时间: 20190509
...etChildByName("Main Camera") as Laya.Camera; camera.addComponent(CameraMoveScript); var tiger:Laya.Sprite3D = this._scene.getChildByName("tiger_idle") as Laya.Sprite3D; console.log(tiger); var animator:Laya.Animator = tiger.getComponentByIndex(0) as Laya.Animator; animator.play(&...
来源: Laya_社区 发布时间: 20180317
... 0), false, false); //相机视角控制组件(脚本) camera.addComponent(CameraMoveScript); //添加光照 var directionLight = _scene.addChild(new Laya.DirectionLight()); //光照颜色 directionLight.color = new Laya.Vector3(1, 1, 1); directionLight.transform.rotate(new Laya.Vector3(-3.14 / 3, 0...
来源: Laya2.0_文档 发布时间: 20210715
...,物体位置创建一个名为cameraroot 的sprit3D,给它添加一个cameraMoveScript脚本组件,然后cameraroot.addchild创建一个摄像机,设置好摄像机的默认位置角度使其朝向物体就行了 2017-07-14 1 1 分享 微博 QZONE 微信 183*****755 赞同来自: 需要...
来源: Laya_社区 发布时间: 20170714
...camera.transform.translate(new Laya.Vector3(0, 1, 0)); camera.addComponent(CameraMoveScript); })); } ``` 我们点击加载场景,再来看状态。 ![](img/2.png)(图2) 在场景显示出来后,我们可以看到在 **Stat** 面板中 **GPUMemory** 有一个比较明显的涨幅。 然后我们...
来源: Laya2.0_文档 发布时间: 20210715
...模型旋转,同时给摄影机添加了移动脚本 camera.addComponent(CameraMoveScript); //创建一个自定义材质,并且添加给box var _material = new CustomMaterial(); box.meshRenderer.material = _material; ``` 运行起来后,我们调整视角得到的效果图: ![](img/2.png)(图...
来源: Laya2.0_文档 发布时间: 20210715
官方案例里摄像机绕物体旋转脚本的问题 官方案例里的CameraMoveScripts在2.0版本下有很多接口,属性不存在。比如this.camera.moveForward、 super._initialize(owner)、super._update(state)等,放在1.7版本里是有的。是不是LayaAir.d.ts有修改。现在有...
来源: Laya_社区 发布时间: 20190224
...era.transform.rotate(this._rotation, true, false); moveCamera.addComponent(CameraMoveScript); //设置鼠标弹起事件响应 Laya.stage.on(Event.MOUSE_UP, this, function (): void { this.index = 0; //获取每次生成路径 this.getGridIndex(this.path[this.curPathIndex % this.pointCount].x, this.p...
来源: Laya3.0_文档 发布时间: 20230303