大约有 46 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0041 秒)
...); camera.clearFlag = Laya.BaseCamera.CLEARFLAG_SKY; camera.addComponent(VRCameraMoveScript); /* var camera = (scene.addChild(new Laya.Camera())); camera.transform.translate(new Laya.Vector3(93, 64, -33)); camera.transform.rotate(new Laya.Vector3(0.05, 155, 0), true, false); camera.clearColor = null...
来源: Laya_社区 发布时间: 20170707
...; camera.clearColor = new Laya.Vector3(0.3, 0.3, 0.5); camera.addComponent(CameraMoveScript); //创建点光[左下角]------------ 这个不生效,除非注释掉light2 var light1 = scene.addChild(new Laya.PointLight()); light1.transform.translate(new Laya.Vector3(-10,3,0));//移动灯光位置 l...
来源: Laya_社区 发布时间: 20180103
...aya.Vector3( -15, 0, 0), true, false); camera.addComponent(CameraMoveScript); //添加光照 var directionLight= new Laya.DirectionLight(); this.scene.addChild(directionLight); directionLight.colo...
来源: Laya_社区 发布时间: 20190509
... //-----self-libs----- loadLib("libs/common/Tool.js") loadLib("libs/common/CameraMoveScript.js") loadLib("js/bundle.js"); 测试安卓平台打包异常 具体日志 10-15 16:43:46.702: I/LayaBox(3503): alert=出错啦,请把此信息截图给研发商 10-15 16:43:46.702: I/LayaBox(3503): Typ...
来源: Laya_社区 发布时间: 20181015
...ransform.rotate(new Vector3( -45, 0, 0), true, false); camera.addComponent(CameraMoveScript); //生成平面,其实是一个box,只不过高度很小,可看成一个平面 var plane:MeshSprite3D = scene.addChild(new MeshSprite3D(new BoxMesh(4,4,0.001))) as MeshSprite3D; var material:StandardMa...
来源: Laya_社区 发布时间: 20161223
...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