mirror of
https://github.com/Steffo99/keep-everything-alive.git
synced 2024-11-22 17:34:18 +00:00
20 lines
476 B
C#
20 lines
476 B
C#
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);
|
|
}
|
|
}
|
|
}
|