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

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

751. 为什么我获取不到鼠标滚轮的delta值,我查看laya.events.Event 里面没有这个属性 [ 65%]

...w Laya.Camera()) as Laya.Camera; this.camera.transform.position = new Laya.Vector3(0, 0, 5); this.camera.transform.rotate(new Laya.Vector3(0, 0, 0), true, false); Laya.stage.on(Event.MOUSE_WHEEL,this,this.onMouseWheel); } private onMouseWheel(e:Event):void { e. //没有delta 属性 } } } new laya.In...

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

752. PixelLineSprite3D 绘制线段问题 [ 65%]

...his.originRay = new Laya.Ray(this.sceneCamera.transform.position, new Laya.Vector3(0, 0, 0)) let pointVec2 = new Laya.Vector2( ) pointVec2.x = Laya.MouseManager.instance.mouseX; pointVec2.y = Laya.MouseManager.instance.mouseY; this.sceneCamera.viewportPointToRay(pointVec2, this.originRay) // 摄像...

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

753. 摄像机挂在主角身上,主角通过position移动,摄像机没有移动,如果主角通过translate来移动,摄像机才会移动 [ 65%]

...候是正常的,但是直接跑就有问题。 bing • 2017-06-13 17:17 Vector3.ZERO.cloneto(transform.position); 这种代码也移动不了。 需要用 transofrm.position = Vector3.ZERO; 才可以 183*****755 • 2017-06-14 23:06 楼上说的处理方法很正确,最终的计算结果需...

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

754. [LayaAir3]关于laya更新到3.1出现射线检测不到的情况 [ 65%]

...b,但是更新后返回的d的数据         var startPoi=new Laya.Vector3(this.Bullet.transform.position.x,this.Bullet.transform.position.y,this.Bullet.transform.position.z-0.5);//起始点         var dir = new Laya.Vector3(0,0,-1);//方向         var ray:Laya.Ray = new Laya.Ray(sta...

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

755. unity导出动画如何使用 root motion node [ 65%]

...a (UnityEngine.GameObject gameObject, .JSONObject node, .JSONObject child, Vector3 position, Quaternion rotation, Vector3 scale, System.String& goPath) LayaExport.DataManager.getGameObjectData (UnityEngine.GameObject gameObject, System.String gameObjectPath, .JSONObject parentsChildNodes, Boolea...

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

756. laya.d3.physics.RaycastWheel_API3.0 [ 65%]

...trix4x4() Defined in laya/d3/physics/RaycastWheel.ts:13 worldPos worldPos: Vector3 = new Vector3() Defined in laya/d3/physics/RaycastWheel.ts:9 worldQuat worldQuat: Quaternion = new Quaternion() Defined in laya/d3/physics/RaycastWheel.ts:10 Accessors brake get brake(): number set brake(v: number): v...

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

757. 给模型动态添加脚本报错 [ 65%]

...              goldNode.transform.localPosition = new Laya.Vector3(this.startPos.x + (4.5 - Math.random() * 9), this.startPos.y, this.startPos.z + (2.5 - Math.random() * 5));                 console.log('----------------goldnode', goldNode);      ...

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

758. 3D概念入门 · LayaAir3.0文档 · LAYABOX [ 65%]

...擎中,针对2维、3维、4维向量的封装方法示例分别为: Vector2(1, 2) 、Vector3(1, 1, 3)、Vector4(1, 2, 3, 0.5) 。然而LayaAir引擎封装的Vector方法,不仅可以作为向量的使用,还可以用于顶点坐标位置,或者表达颜色的时候使用。比如原点坐...

来源: Laya3.0_文档 发布时间: 20241014

759. CommandBuffer_Outline 每次 addCommandBuffer都会永久增加10Gpu,removed掉相机事件也不会减少 [ 65%]

...不清理深度         buf.clearRenderTarget(true,false,new Laya.Vector4(0,0,0,0));                  //将传入的Render渲染到纹理上         for(var i = 0,n = renders.length;i<n;i++){             if(renders == null){           ...

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

760. 3D模型x方向角度不为0,时。挂刚体和碰撞器。在rotate y方向时。模型会乱转,不挂就没问题 [ 64%]

...le = this.owner.transform.rotationEuler.y; this.owner.transform.rotate(new Vector3(0, angle - this.lastAngle, 0), false, false) 打印出来看到y方向角度一直在变。   如果直接赋值到rotationEuler就没问题 // this.owner.transform.rotationEuler = new Vector3(-90, angle, 0); 附件 ...

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