灰太狼 碰撞后产生三个参数:onTriggerEnter(other: any, self: any, contact: any): void {console.log(other); //被碰撞的对象console.log(self); //自己console.log(contact); //连接点对象, contact.getHitInfo(); //这里有碰撞点的信息}官方文档不全,或者说没法说的那么仔细,如果需要,自己console.log()把对象打印出来,大致能分析出来。