1
Fork 0
mirror of https://github.com/Steffo99/keep-everything-alive.git synced 2024-11-23 01:44:18 +00:00
keep-everything-alive/Assets/Scripts/Microgame_IT/EatIfOver.cs

21 lines
476 B
C#
Raw Normal View History

2020-04-20 19:31:30 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[RequireComponent(typeof(AudioSource))]
public class EatIfOver : MonoBehaviour
{
private AudioSource audioSource;
void Awake() {
audioSource = GetComponent<AudioSource>();
}
void OnTriggerStay2D(Collider2D other) {
if(other.tag == "Enemy" && !Input.GetMouseButton(0)) {
audioSource.Play();
Destroy(other.gameObject);
}
}
}