大约有 17 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0027 秒)
onTriggerEnter判断和输出的other.name不正确 角色身上的onTriggerEnter 碰到球。 输出的other.name为 undefined. 球身上的onTriggerEnter 碰到地面trigger 输出other.name为 down ,这个没有问题。但是球碰到人物。 也是输出 down。 这就有问题了 附...
来源: Laya_社区 发布时间: 20220804
[LayaAir3]3d物理onTriggerEnter中的other参数不是PhysicsColliderComponent类型 版本3.1.1, 物理引擎为bullet, 在取collisionGroup时发现为undefined, 断点发现other类型为laya.bullet.js中的类, 并不是或继承自PhysicsColliderComponent,看了一下onCollisionEnter参数c...
来源: Laya_社区 发布时间: 20240307
onTriggerEnter(other:*, self:*, contact:*)如何使用第三个参数 请问layaAir 2.0中在脚本中重写onTriggerEnter(other:*, self:*, contact:*)时,第三个参数是什么意思?如何使用第三个参数? 2019-05-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...
来源: Laya_社区 发布时间: 20190523
onTriggerEnter(other: any, self: any, contact: any) 参数使用 onTriggerEnter(other: any, self: any, contact: any) 参数使用 2020-04-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什么被折叠? 0 ...
来源: Laya_社区 发布时间: 20200416
两个移动的简单物体 onTriggerEnter 无法触发 (有悬赏) laya2.4 的引擎在两个物体上加了box collider,初始化时候给物体加上脚本, collisionGroup canCollideWith 都设置了 两个物体移动时候重合但是无法触发onTriggerEnter, export default clas...
来源: Laya_社区 发布时间: 20191215
...date里修改其中一个物体的rotationEuler,会触发另一个物体的onTriggerEnter回调 我把Laya版本更新到 2.7 后发现 onTriggerEnter的回调 可能有些问题, 如图中,首先给黑色小牛里的一个添加了Collider的节点添加onTriggerEnter的脚本监听, 当我不更...
来源: Laya_社区 发布时间: 20200720
在2.0里onTriggerEnter 的碰撞点坐标如何获得? 请问Laya2.0里onTriggerEnter 事件的时候,如何获得碰撞点的坐标? 在API里找到了Laya.ContactPoint这个类, 但是没有例子,试了几种方法都不管用? 有没有大哥提供一下思路或者方法? 2019-0...
来源: Laya_社区 发布时间: 20190725
...体添加刚体后,和其它刚体碰撞后不能修改角度和位置 onTriggerEnter(other,self,contact) { var n=this.owner.rotation; if(other.label === "heng"){ console.log("角度"+this.owner.rotation); ...
来源: Laya_社区 发布时间: 20200817
...ite3D; let position = obj.contacts[0].positionOnA; // 碰撞位置 } onTriggerEnter(obj) 、、如何获取碰撞位置? 2020-04-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 一&漠 赞同来自: ...
来源: Laya_社区 发布时间: 20200408
...微博 QZONE 微信 灰太狼 赞同来自: 碰撞后产生三个参数: onTriggerEnter(other: any, self: any, contact: any): void { console.log(other); //被碰撞的对象 console.log(self); //自己 console.log(contact); //连接点对象, contact.getHitInfo(); //这里有碰撞点的信息 }...
来源: Laya_社区 发布时间: 20181026