• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 364 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0061 秒)

191. 挂载物体的3D变换问题 [ 70%]

...prite3D=new MeshSprite3D(cylinderMesh); cylinder3D.transform.translate(new Vector3(3,0,0),true); cylinder3D.transform.localScale = new Vector3(2,2,2); cylinder3D.transform.localRotationEuler = new Vector3(90,90,90); role.getChildAt(0).addChild(cylinder3D); this.ani.linkSprite3D("weaponEffect",cylind...

来源: Laya_社区 发布时间: 20170904

192. 多摄像机窗口的使用(JavaScript-3D基础(JS)-LayaAir3D之Camera) [ 69%]

...a(0, 0.1, 100)); //设置相机1清除颜色 camera1.clearColor = new Laya.Vector4(0.3, 0.3, 0.3, 1.0); camera1.transform.translate(new Laya.Vector3(0, 0, 1.5)); //设置裁剪空间的视口 camera1.normalizedViewport = new Laya.Viewport(0, 0, 0.5, 1.0); //创建相机2 var camera2 = scene.addChild...

来源: Laya2.0_文档 发布时间: 20210715

193. CommandBuffer使用文档(TypeScript-3D基础(TS)-LayaAir3D之高级应用) [ 69%]

...script setShaderData//设置shader数据,可以设置shader中的texture vector number等 setGlobalShaderData//设置全局数据,可以用于所有的shader blitScreenQuad//通过全屏四边形将源纹理渲染到目标渲染纹理指令。 blitScreenQuadByMaterial//通过全屏四边形将...

来源: Laya2.0_文档 发布时间: 20210715

194. Point Light不能导出? [ 69%]

...Light = scene.addChild(new Laya.PointLight()); pointLight.color = new Laya.Vector3(0.1189446, 0.5907708, 0.7352941); pointLight.transform.position = new Laya.Vector3(0.4, 0.4, 0.0); pointLight.attenuation = new Laya.Vector3(0.0, 0.0, 3.0); pointLight.range = 3.0; 2017-12-19 0 4 分享 微博 QZONE ...

来源: Laya_社区 发布时间: 20171219

195. 多摄像机窗口的使用(TypeScript-3D基础(TS)-LayaAir3D之Camera) [ 69%]

...a(0, 0.1, 100)); //设置相机1清除颜色 camera1.clearColor = new Laya.Vector4(0.3, 0.3, 0.3, 1.0); camera1.transform.translate(new Laya.Vector3(0, 0, 1.5)); //设置裁剪空间的视口 camera1.normalizedViewport = new Laya.Viewport(0, 0, 0.5, 1.0); //创建相机2 var camera2 = scene.addChild...

来源: Laya2.0_文档 发布时间: 20210715

196. 场景环境光(ActionScript-3D基础(AS3)-LayaAir3D之场景渲染配置) [ 69%]

...空盒。 ```typescript //设置场景环境光 scene.ambientColor = new Vector3(0.6, 0, 0); ``` 效果如下(图2): ![](img/2.png)(图2)

来源: Laya2.0_文档 发布时间: 20210715

197. 转换2D屏幕坐标系统到3D正交投影下的坐标系统位置偏差 [ 69%]

...投影下的坐标系统 _camera.convertScreenCoordToOrthographicCoord(new Vector3(800, 700, 0), this.orthographicPos); 附件 : --> 2022-05-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Fred 赞同来自...

来源: Laya_社区 发布时间: 20220525

198. DirectionLight介绍(ActionScript-3D基础(AS3)-LayaAir3D之灯光) [ 69%]

...ight()) as DirectionLight; //方向光的颜色 directionLight.color = new Vector3(1, 1, 1); //设置平行光的方向 var mat:Matrix4x4 = directionLight.transform.worldMatrix; mat.setForward(new Vector3(-1.0, -1.0, -1.0)); directionLight.transform.worldMatrix=mat; ``` ​ **setForward** 平行光...

来源: Laya2.0_文档 发布时间: 20210715

199. laya.d3.core.material.PBRStandardMaterial_API3.0 [ 69%]

...etShaderDataByIndex getShaderPropertyValue getTexture getTextureByIndex getVector2 getVector2ByIndex getVector3 getVector3ByIndex getVector4 getVector4ByIndex hasDefine hasListener isCreateFromURL off offAll offAllCaller oldparseEndEvent on once removeDefine setBool setBoolByIndex setBuffer setBuffe...

来源: Laya3.0_api 发布时间: 20231115

200. 摄像机旋转问题 [ 69%]

...体旋转。有相关的方法可以解决吗?   private var _rotateC:Vector3 = new Vector3(0, 0.001, 0);         private function startRound():void         {             Laya.timer.frameLoop(1, this, function():void{                 camare.transform.rotate(_rotat...

来源: Laya_社区 发布时间: 20170607