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

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

51. laya.d3.graphics.VertexPositionNTBTexture [ 95%]

...、纹理顶点结构。 Public Properties PropertyDefined By  normal : Vector3[read-only] VertexPositionNTBTexture  position : Vector3[read-only] VertexPositionNTBTexture  textureCoordinate : Vector2[read-only] VertexPositionNTBTexture  vertexDeclaration : VertexDeclaration[read-only] Vert...

来源: laya_api 发布时间: 20170929

52. laya.d3.graphics.VertexPositionNormalTexture [ 95%]

...、纹理顶点结构。 Public Properties PropertyDefined By  normal : Vector3[read-only] VertexPositionNormalTexture  position : Vector3[read-only] VertexPositionNormalTexture  textureCoordinate : Vector2[read-only] VertexPositionNormalTexture  vertexDeclaration : VertexDeclaration[read-o...

来源: laya_api 发布时间: 20170929

53. LayaAir3D中的Transform变换(TypeScript-3D基础(TS)-LayaAir3D图形系统基础概念) [ 95%]

...转。 ```typescript //移动摄像机 camera.transform.translate(new Laya.Vector3(0, 3, 3)); //旋转摄像机 camera.transform.rotate(new Laya.Vector3(-30, 0, 0), true, false); ``` 关于旋转,在Transform3D中提供了两种旋转接口,一种是角度/弧度旋转`rotate`,还一种是欧...

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

54. Mesh网格-自定义网格 [ 94%]

...ddChild(new Laya.Camera(0, 0.1, 100)); camera.transform.translate(new Laya.Vector3(0, 2, 5)); camera.transform.rotate(new Laya.Vector3(-15, 0, 0), true, false); var directionLight = scene.addChild(new Laya.DirectionLight()); directionLight.color = new Laya.Vector3(0.6, 0.6, 0.6); directionLight.dire...

来源: Laya_示例 发布时间: 20241124

55. laya.maths.Matrix4x4_API3.0 [ 94%]

...urns void decomposeTransRotMatScale decomposeTransRotMatScale(translation: Vector3, rotationMatrix: Matrix4x4, scale: Vector3): boolean Defined in laya/maths/Matrix4x4.ts:545 分解矩阵为平移向量、旋转矩阵、缩放向量。 Parameters translation: Vector3 平移向量。 rotationMatrix: ...

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

56. LayaAir3D中的Transform变换(JavaScript-3D基础(JS)-LayaAir3D图形系统基础概念) [ 94%]

...转。 ```typescript //移动摄像机 camera.transform.translate(new Laya.Vector3(0, 3, 3)); //旋转摄像机 camera.transform.rotate(new Laya.Vector3(-30, 0, 0), true, false); ``` 关于旋转,在Transform3D中提供了两种旋转接口,一种是角度/弧度旋转`rotate`,还一种是欧...

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

57. laya.d3.math.Matrix4x4_API3.0 [ 94%]

...urns void decomposeTransRotMatScale decomposeTransRotMatScale(translation: Vector3, rotationMatrix: Matrix4x4, scale: Vector3): boolean Defined in laya/d3/math/Matrix4x4.ts:523 分解矩阵为平移向量、旋转矩阵、缩放向量。 Parameters translation: Vector3 平移向量。 rotationMatrix...

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

58. laya.d3.graphics.VertexPositionNormalColorTangent [ 94%]

... color : Vector4[read-only] VertexPositionNormalColorTangent  normal : Vector3[read-only] VertexPositionNormalColorTangent  position : Vector3[read-only] VertexPositionNormalColorTangent  tangent : Vector4[read-only] VertexPositionNormalColorTangent  vertexDeclaration : VertexDeclaration[re...

来源: laya_api 发布时间: 20170929

59. laya.d3.graphics.VertexPositionNormalColorTexture [ 94%]

... color : Vector4[read-only] VertexPositionNormalColorTexture  normal : Vector3[read-only] VertexPositionNormalColorTexture  position : Vector3[read-only] VertexPositionNormalColorTexture  textureCoordinate : Vector2[read-only] VertexPositionNormalColorTexture  vertexDeclaration : VertexDecl...

来源: laya_api 发布时间: 20170929

60. 3D中摄像机绕物体旋转该如何实现? [ 94%]

...试着改一改就OK啦。。import Transform3D = Laya.Transform3D; import Vector3 = laya.d3.math.Vector3; import Quaternion = laya.d3.math.Quaternion; /* 用法: //初始化照相机 var camera = this.newScene.addChild(new Laya.Camera(0, 0.1, 100)) as Laya.Camera; camera.transform.rotationEuler =...

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