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

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

11. 判断玩家在地面还在空中 [ 71%]

...3,new Laya.Vector3(0,0,1));         (this.owner.scene as Laya.Scene3D).physicsSimulation.rayCast(ray,this.outHitResult);         if(!this.outHitResult.succeeded){             return false;         }         return this.outHitResult.collider     }   然后使用方法 let obj...

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

12. Laya.Physics.rayCastAll 和 Laya.RaycastHit [ 69%]

...d = new Laya.Scene3D(); let outHitInfoAll = new Laya.HitResult(); scene3d.physicsSimulation.rayCastAll(this.ray, outHitInfoAll, depth); 2018-12-19 1 4 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 Max.魚魚魚鱼魚魚 相关问题 Laya.R...

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

13. Laya2.7.1 射线提示rayCast未定义 [ 69%]

...间生成的射线 this.camera.viewportPointToRay(point, ray); this.scene.physicsSimulation.rayCast(ray,outHitResult); //如果碰撞到物体 if (outHitResult.succeeded) { } }}  求问哪里语法错了 附件 : --> 2020-08-01 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相...

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

14. Camera.viewportToRay中origin与direction相等问题 [ 68%]

...is._rayPt, this._ray); let scene = this.owner.scene as Laya.Scene3D; scene.physicsSimulation.rayCast(this._ray, this._raycastHit); console.log(this._raycastHit.succeeded); if(this._raycastHit.succeeded) console.log(this._raycastHit.collider.owner.name); } GameManager.instance.mainCamera其实就是...

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

15. Cannot read property 'rayCast' of undefined [ 67%]

...s.point, this.ray); var out = new Laya.CannonHitResult(); this.scene.cannonPhysicsSimulation.rayCast(this.ray,out); if(out.succeeded) { console.log(111); } } } 附件 : --> web.rar 2020-09-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的...

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

16. 物理形状扫描检测(JavaScript-3D基础(JS)-LayaAir3D之物理系统) [ 67%]

...his.castAll) { //进行形状检测,检测所有碰撞的物体 this.scene.physicsSimulation.shapeCastAll(sphereCollider, this.from, this.to, this.hitResults); for (i = 0, n = this.hitResults.length; i 该示例中射线摆放的模型是使用代码创建的,只是为了方便观察和理解形...

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

17. 新版本射线检测不能根据layer检测了 [ 67%]

...ayer层 目前是只能给所有碰撞器分组来检测吗? _this.scene.physicsSimulation.rayCast(_this.ray, _this._outHitResult,_this._distance,_this._collisionGroup); 2019-04-19 1 条评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提...

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

18. 物理形状扫描检测(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 67%]

...his.castAll) { //进行形状检测,检测所有碰撞的物体 this.scene.physicsSimulation.shapeCastAll(sphereCollider, this.from, this.to, this.hitResults); for (i = 0, n = this.hitResults.length; i 该示例中射线摆放的模型是使用代码创建的,只是为了方便观察和理解形...

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

19. 如何对3D精灵进行鼠标检测(JavaScript-3D基础(JS)-LayaAir3D之鼠标交互) [ 66%]

...ewportPointToRay(this.point,ray); //拿到射线碰撞的物体 this.scene.physicsSimulation.rayCast(this.ray,this.outHitResult); //如果碰撞到物体 if (this.outHitResult.succeeded) { //删除碰撞到的物体 this.text.text = "碰撞到了" + this.outHitResult.collider.owner.name ; console.lo...

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

20. 如何对3D精灵进行鼠标检测(TypeScript-3D基础(TS)-LayaAir3D之鼠标交互) [ 66%]

...ewportPointToRay(this.point,ray); //拿到射线碰撞的物体 this.scene.physicsSimulation.rayCast(this.ray,this.outHitResult); //如果碰撞到物体 if (this.outHitResult.succeeded) { //删除碰撞到的物体 this.text.text = "碰撞到了" + this.outHitResult.collider.owner.name ; console.lo...

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