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

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

1. onTriggerEnter(other: any, self: any, contact: any) 参数使用 [ 100%]

onTriggerEnter(other: any, self: any, contact: any) 参数使用 onTriggerEnter(other: any, self: any, contact: any) 参数使用 2020-04-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什么被折叠? 0 ...

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

2. [LayaAir3]3d物理onTriggerEnter中的other参数不是PhysicsColliderComponent类型 [ 91%]

[LayaAir3]3d物理onTriggerEnter中的other参数不是PhysicsColliderComponent类型 版本3.1.1, 物理引擎为bullet, 在取collisionGroup时发现为undefined, 断点发现other类型为laya.bullet.js中的类, 并不是或继承自PhysicsColliderComponent,看了一下onCollisionEnter参数c...

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

3. [LayaAir 2.0] 如何获取碰撞点坐标? [ 71%]

...微博 QZONE 微信 灰太狼 赞同来自: 碰撞后产生三个参数: onTriggerEnter(other: any, self: any, contact: any): void { console.log(other); //被碰撞的对象 console.log(self); //自己 console.log(contact); //连接点对象, contact.getHitInfo(); //这里有碰撞点的信息 }...

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

4. box2d动态创建绑定多个关节报错 Node:the component is singleton,can't add the second one. [ 69%]

...stanceJoint 与多个不同rigBody做距离关系绑定 代码片段:  onTriggerEnter(other: any, self: any, contact: any) {  let pointes = contact.getHitInfo().points;  let potSelf = new Laya.Point(pointes[0].x, pointes[0].y); let potOther = new Laya.Point(pointes[0].x, pointes[0].y); self.ow...

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

5. box2d引擎报错问题 [ 66%]

...cess(){ this.owner.removeSelf(); Laya.Pool.recover("flyCat", this.owner) } onTriggerEnter(other: any, self: any, contact: any): void { if (other.label === "cloud") { Laya.Tween.clearAll(this._sp) let effect: Laya.Animation = Laya.Pool.getItemByCreateFun("deathEffect", this.createEffect, this); effec...

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

6. RopeJoint代码动态创建 无法设置otherbody [ 62%]

...is.rope.otherBody);     }     onEnable() {             }      onTriggerEnter(other: any, self: any, contact: any): void {     //搜索黏贴在圆环上     } onUpdate(): void {     }  onDisable(): void {     Laya.Pool.recover("friut",this.owner); } } 附件 : --> FruitMaster.z...

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

7. box2d 弹性异常 [ 57%]

...角度并不是特别小. a11a • 2020-03-09 14:18 你在FlyItem里添加 onTriggerEnter(other: any, self: any, contact: any): void { let rig: Laya.RigidBody = this.owner.getComponent(Laya.RigidBody) as Laya.RigidBody; let velocity = rig.linearVelocity; console.log(velocity) } 你把初始弹射改...

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