大约有 10 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0044 秒)
...久才发现是laya的addChild()方法的原因。你可以打印下child.transform.position,会发现child.transform.position = child.transform.localPosition + owner.transform.position,导致child发生了位移。 以下是是我验证出来的结果,基于两种不同的思路,这最终...
来源: Laya_社区 发布时间: 20200819
... Laya_Fred 赞同来自: 您好,在初始化this.initPos = this.rabbit.transform.postion;的时候,实际长拿到的是rabbit.transform.postion的引用,所以在修改rabbit.transform.position之后,打印的this.initPos也会同步变化;要解决这个问题可以获取rabbit.transform...
来源: Laya_社区 发布时间: 20230404
...exist,is repeated loading 加载特效报重复加载 export default class TransformDemo{ private scene:Laya.Scene3D; private position:Laya.Vector3 = new Laya.Vector3(0, 0, 0); private position1:Laya.Vector3 = new Laya.Vector3(0, 0, 0); private rotate:Laya.Vector3 = ne...
来源: Laya_社区 发布时间: 20190509
...位置 赋给 另一个位置 应该怎么写,怎么才能生效呢? A.transform.translate(B.transform.position,false); A.transform.rotate(B.transform.rotation,false,false) ; 2017-12-27 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的...
来源: Laya_社区 发布时间: 20171227
设置transform.localRotation之后,就不能再使用transform.rotate了 laya3D, ... var ele=eleroot.getChildAt(0).clone(); ele.transform.position=new Laya.Vector3(0, 0, 0); scene.addChild(ele); ... ele.transform.rotate(new Laya.Vector3(10, 0, 0), true); //这里会有效 ele.transform.localRo...
来源: Laya_社区 发布时间: 20170323
...置这个节点的旋转,如果我使用Laya.Quaternion.cloneTo(camera.transform.localRotation),会失败,如果使用camera.transform.localPosition = Laya.Quaternion.clone(),才会成功,之前我记得你们不是说过尽量避免创建对象吗?直接用cloneTo,摄像机的旋转四...
来源: Laya_社区 发布时间: 20170628
...= scene.addChild(new Laya.Camera(0, 0.1, 100)) as Laya.Camera; this.camera.transform.translate(new Laya.Vector3(0, 2, 5)); this.camera.transform.rotate(new Laya.Vector3(-15, 0, 0), true, false); this.camera.clearColor = null; //方向光 var directionLight: Laya.DirectionLight = scene.addChild(new...
来源: Laya_社区 发布时间: 20180820
...ya.maths.Matrix=bone.getResultMatrixByFrame(skeleton.index); result=matrix.transformPoint(result); return result; } } 以上是自定义代码部分,下面是laya源码的修改: 1. laya.ani.js 文件中 Bone 类中添加通过帧数来获取矩阵的方法 //返回变化矩阵 ...
来源: Laya_社区 发布时间: 20190805
...world->body->trail A点移除的时候 trail.removeSelf(); trail.transform.position = body.transform.position.clone(); world.addChild(trail); B点新加的时候重新创建一个新的,不要用这个旧的了 2019-01-11 0 0 分享 微博 QZONE 微信 gplzh 赞同来自: 同求重...
来源: Laya_社区 发布时间: 20181217
...ite3D = scene.addChild(Sprite3D.load("...")) as Sprite3D; particleSprite3D.transform.position = new Laya.Vector3(100,0,0); 这样写 无法移动例子效果? 2018-05-09 0 6 分享 微博 QZONE 微信 绝地求生 赞同来自: unity5.6为什么无法使用u3d插件 2018-07-11 0 0 分享 微博...
来源: Laya_社区 发布时间: 20161219