gimm-platformer-project/Assets/Scripts/GroundCheck.cs

29 lines
763 B
C#
Raw Normal View History

2021-09-24 00:34:18 -06:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GroundCheck : MonoBehaviour
{
GameObject Player;
private void Start()
{
Player = gameObject.transform.parent.gameObject;
}
private void OnCollisionEnter2D(Collision2D collision)
{
if (collision.collider.tag == "Ground" || collision.collider.tag == "Platform")
{
Player.GetComponent<Movement2D>().isGrounded = true;
}
}
private void OnCollisionExit2D(Collision2D collision)
{
if (collision.collider.tag == "Ground" || collision.collider.tag == "Platform")
{
Player.GetComponent<Movement2D>().isGrounded = false;
}
}
}