30 lines
573 B
C#
30 lines
573 B
C#
using UnityEngine;
|
|
|
|
public class JumpHitbox : MonoBehaviour
|
|
{
|
|
public PlayerMovement playerMovement;
|
|
// Start is called once before the first execution of Update after the MonoBehaviour is created
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
|
|
public void OnTriggerEnter(Collider other)
|
|
{
|
|
if (other.CompareTag("Player"))
|
|
{
|
|
Debug.Log("Hit Player");
|
|
playerMovement.HP -= 1;
|
|
}
|
|
else{
|
|
Debug.Log("Failed");
|
|
}
|
|
}
|
|
}
|