最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

unity game engine - 2D object doesnt collide with my player object - Stack Overflow

programmeradmin1浏览0评论

trying to make a flappy bird clone and i cant seem to make the player and walls collide (very new beginner) so was looking for solutions and none of them worked for me

using UnityEngine;

public class Obstacle : MonoBehaviour
{
   public Rigidbody2D rb;
    public float Speed = 10f;

    // Update is called once per frame
    void Update()
    {
        rb.linearVelocity = new Vector2(Speed, rb.linearVelocity.y);
    }
     
    void OnCollisionEnter(Collision collisionInfo)

    {
               if(collisionInfo.collider2D.tag == "Obstacle")
               {
                 FindObjectOfType<GameManager>().EndGame();
               }
    }
}

this is the code for the wall (pretty sure the GameManager is good) Picture of my walls componentsAnd this is a picture of my players components as a side note i couldnt find a way for the walls to not fall down when i click on play so i set the mass to like 10 and the gravity to 0 in case that creates any problems

trying to make a flappy bird clone and i cant seem to make the player and walls collide (very new beginner) so was looking for solutions and none of them worked for me

using UnityEngine;

public class Obstacle : MonoBehaviour
{
   public Rigidbody2D rb;
    public float Speed = 10f;

    // Update is called once per frame
    void Update()
    {
        rb.linearVelocity = new Vector2(Speed, rb.linearVelocity.y);
    }
     
    void OnCollisionEnter(Collision collisionInfo)

    {
               if(collisionInfo.collider2D.tag == "Obstacle")
               {
                 FindObjectOfType<GameManager>().EndGame();
               }
    }
}

this is the code for the wall (pretty sure the GameManager is good) Picture of my walls componentsAnd this is a picture of my players components as a side note i couldnt find a way for the walls to not fall down when i click on play so i set the mass to like 10 and the gravity to 0 in case that creates any problems

Share Improve this question asked Apr 1 at 18:29 MulankunasMulankunas 12 bronze badges New contributor Mulankunas is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 1
  • Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. – Community Bot Commented Apr 2 at 0:09
Add a comment  | 

2 Answers 2

Reset to default 1

You have Is Trigger checked on your Obstacle.

You need to use OnTriggerEnter instead of OnCollisionEnter

you have to use 2D game object with 2D colliders only. I think you are using 2D and 3D objects, if not then uncheck IsTrigger and then your OnCollisionEnter2D will work else if you want to make that IsTrigger checked then use OnTriggerEnter2D function.

发布评论

评论列表(0)

  1. 暂无评论