You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RatAttack2D/Assets/Scripts/Bullet.cs

28 lines
689 B

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Bullet : MonoBehaviour
{
public Rigidbody2D rb;
[System.NonSerialized]public int setDmg;
private int Damage;
private void Start()
{
Damage = setDmg;
rb.AddForce((Vector2)(Quaternion.Euler(0,0,rb.rotation) * Vector2.right) * 100, ForceMode2D.Impulse);
}
private void OnTriggerEnter2D(Collider2D other)
{
if(other.CompareTag("Player"))
{
return;
}
if(other.TryGetComponent<Health>(out Health health))
{
health.RemoveHP(Damage);
}
GameObject.Destroy(gameObject);
}
}