mirror of
https://github.com/Steffo99/keep-everything-alive.git
synced 2024-11-25 10:44:18 +00:00
30 lines
635 B
C#
30 lines
635 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
[RequireComponent(typeof(AudioSource))]
|
|||
|
public class SoundOnCollisionWithEnemy : MonoBehaviour
|
|||
|
{
|
|||
|
public float activationDelay = 0.5f;
|
|||
|
|
|||
|
private AudioSource audioSource;
|
|||
|
private bool active;
|
|||
|
|
|||
|
void Awake()
|
|||
|
{
|
|||
|
audioSource = GetComponent<AudioSource>();
|
|||
|
Invoke("Activate", activationDelay);
|
|||
|
}
|
|||
|
|
|||
|
void Activate() {
|
|||
|
active = true;
|
|||
|
}
|
|||
|
|
|||
|
void OnTriggerStay2D(Collider2D other) {
|
|||
|
if(other.tag == "Enemy" && active) {
|
|||
|
audioSource.Play();
|
|||
|
active = false;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|