大约有 55 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0034 秒)
LayaAir引擎 关于Laya.Quaternion.createFromAxisAngle旋转角度不正确的问题 Laya.Quaternion.createFromAxisAngle 在做向量旋转的时候,当使用的旋转坐标轴是标准坐标轴时,旋转的结果是正确的,如围绕Y轴旋转,(0,1,0),旋转30度,得到的结果是正确的 但...
来源: Laya_社区 发布时间: 20191230
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
Laya.Quaternion.lookAt函数的参数只能用Laya.Vector3??? 用Laya.Vector3派生出来的类就会有问题,传进去的参数是undefine,太麻烦了吧。 2017-06-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提...
来源: Laya_社区 发布时间: 20170611
...ity中没问题. laya中没实现. 高手帮我看看问题在哪? var out:Quaternion=new Quaternion(); var out1:Quaternion=new Quaternion(); var out2:Quaternion=new Quaternion(); var dir:Vector3=new Vector3() ; Vector3.subtract(transform.position,sphere3D.transform.position,dir); Quaternion.rotatio...
来源: Laya_社区 发布时间: 20180726
有没有unity里的Quaternion.FromToRotation类似的接口可用? 就是创建从一个向量到另外一个向量的旋转Quaternion.FromToRotation(Vector3,Vector3),返回一个用四元数表示的旋转 2018-09-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相...
来源: Laya_社区 发布时间: 20180921
...core.scene.BaseScene; import laya.d3.core.scene.Scene; import laya.d3.math.Quaternion; import laya.d3.math.Vector3; import laya.events.Event; import laya.events.KeyBoardManager; /** * ... * @author */ public class CameraMoveScript extends Script { protected var lastMouseX:Number; protected var lastM...
来源: Laya_社区 发布时间: 20170218
... Laya.Vector3 = new Laya.Vector3(); protected resultRotation: Laya.Quaternion = new Laya.Quaternion(); protected tempRotationZ: Laya.Quaternion = new Laya.Quaternion(); protected tempRotationX: Laya.Quaternion = new Laya.Quaternion(); protected tempRotationY: Laya.Qua...
来源: Laya_社区 发布时间: 20200707
...h" ], Laya.Handler.create(this, onComplete)); var _quaternion = new Laya.Quaternion(); Laya.timer.frameLoop(1, null, function () { Laya.Quaternion.createFromYawPitchRoll(0.025, 0, 0, _quaternion); var _direction = directionLight...
来源: Laya_社区 发布时间: 20180725
Laya.Quaternion.lerp和Laya.Quaternion.rotationLookAt问题! 图1想实现图2的效果,蓝球跟随红球旋转 在这里卡住了: Laya.Quaternion.lerp(left四元数,right四元数b,插值比例,输出四元数) Laya.Quaternion.rotationLookAt(方向,上向量,输出四元数) 里...
来源: Laya_社区 发布时间: 20190308
...sform.position = new Vector3(0, 0, -1); QiPanMesh.transform.rotation = new Quaternion(-1, 0, 0, 1); QiPanMesh.layer = Layer.getLayerByNumber(5); QiPanMesh.meshRender.castShadow = true; QiPanMesh.meshRender.receiveShadow = true; scene.addChild(QiPanMesh); var gTitleMesh:MeshSprite3D = new MeshSprite3...
来源: Laya_社区 发布时间: 20170617