Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Evaluation

A topic by Sky_9ye created Jul 13, 2023 Views: 138 Replies: 3
Viewing posts 1 to 3
Developer

How do you think about this game?

牛逼

没想到你还更新了hhh,我看你加分每次会加2,你看下是不是因为你的翅膀也添加了一个collider或者检查下小鸟这个物品里是不是有不止一个collider。 或者你可以给水管中间的trigger的代码前面加个if。 

  private void OnTriggerEnter2D(Collider2D collision)

    {

        if (collision.gameObject.CompareTag("Bird")){

                         #你的加分机制那个scoremanager.score++

        }

}

然后给你那个小鸟添加一个Bird 的 tag

Developer

确实是有两个碰撞器,之前发现了但是没有去管这个问题,感谢感谢