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

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

1. laya.d3.math.Quaternion [ 100%]

...I DocumentationAll Packages | All Classes | Index | Frames No Frames QuaternionProperties | Methods | Constants Packagelaya.d3.mathClasspublic class QuaternionInheritanceQuaternion ObjectImplements laya.d3.core.IClone Quaternion 类用于创建四元数。 Public Properties PropertyDefined...

来源: Laya2.0_api 发布时间: 20190513

2. laya.maths.Quaternion_API3.0 [ 99%]

...c/Protected All Inherited Externals Only exported Menu Globals "laya/maths/Quaternion" Quaternion Class Quaternion Quaternion 类用于创建四元数。 Hierarchy Quaternion Implements IClone Index Constructors constructor Properties w x y z DEFAULT NAN Methods clone cloneTo equals forNativeElement...

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

3. laya.d3.math.Quaternion_API3.0 [ 99%]

...Protected All Inherited Externals Only exported Menu Globals "laya/d3/math/Quaternion" Quaternion Class Quaternion Quaternion 类用于创建四元数。 Hierarchy Quaternion Implements IClone Index Constructors constructor Properties w x y z DEFAULT NAN Methods clone cloneTo equals forNativeElement...

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

4. laya.d3.math.Quaternion [ 99%]

...I DocumentationAll Packages | All Classes | Index | Frames No Frames QuaternionProperties | Methods | Constants Packagelaya.d3.mathClasspublic class QuaternionInheritanceQuaternion ObjectImplements laya.d3.core.IClone Quaternion 类用于创建四元数。 Public Properties PropertyDefined...

来源: laya_api 发布时间: 20170929

5. Laya.Quaternion.lerp和Laya.Quaternion.rotationLookAt问题! [ 96%]

Laya.Quaternion.lerp和Laya.Quaternion.rotationLookAt问题! 图1想实现图2的效果,蓝球跟随红球旋转 在这里卡住了: Laya.Quaternion.lerp(left四元数,right四元数b,插值比例,输出四元数) Laya.Quaternion.rotationLookAt(方向,上向量,输出四元数) 里...

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

6. 灯光-聚光 [ 93%]

...mponentByType(Laya.Animator); animator.play(null, 1.0, 115, 150); }); var _quaternion = new Laya.Quaternion(); var _position = new Laya.Vector3(); Laya.timer.frameLoop(1, null, function () { Laya.Quaternion.createFromYawPitchRoll(0.025, 0, 0, _quaternion); Laya.Vector3.transformQuat(spotLight.transf...

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

7. 灯光-方向光 [ 93%]

...ComponentByType(Laya.Animator); animator.play(null, 1.0, 40, 70); }); var _quaternion = new Laya.Quaternion(); Laya.timer.frameLoop(1, null, function () { Laya.Quaternion.createFromYawPitchRoll(0.025, 0, 0, _quaternion); var _direction = directionLight.direction; Laya.Vector3.transformQuat(_directio...

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

8. 灯光-点光 [ 93%]

...tor.play(null, 1.0, 75, 110); }); var _position = new Laya.Vector3(); var _quaternion = new Laya.Quaternion(); Laya.timer.frameLoop(1, null, function () { Laya.Quaternion.createFromYawPitchRoll(0.025, 0, 0, _quaternion); Laya.Vector3.transformQuat(pointLight.transform.position, _quaternion, _positio...

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

9. Laya.Quaternion.rotationLookAt 怀疑存在BUG [ 92%]

Laya.Quaternion.rotationLookAt 怀疑存在BUG  代码的内容就是相机望向一个坐标点,   Laya.Quaternion.rotationLookAt 的 结果是错误的  LAYA版本 RoundCamera_Laya(zhujue: Laya.Vector3, enimy: Laya.Vector3, ca: Laya.Transform3D) {      var enimyPos = enimy;     enimyP...

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

10. 关于Quaternion.rotationLookAt的问题 [ 92%]

关于Quaternion.rotationLookAt的问题 刚用laya不久,在导入一个unity模型做旋转的时候,试图用Quaternion.rotationLookAt生成一个Quaternion直接赋值给Sprite3D的rotation。发现结果怎么都不对,跟到Matrix3x3.lookAt里看实现,生成三个向量之后赋值...

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