So much audio stuff holy shit

This commit is contained in:
Gregory Campbell
2020-07-12 01:07:52 -04:00
parent d2c7bd90e1
commit e2aef2a35b
45 changed files with 275 additions and 58 deletions
+12 -1
View File
@@ -4,14 +4,21 @@ using UnityEngine;
public class EnemyScript : MonoBehaviour
{
public AudioClip[] spawnSounds;
public AudioClip[] defeatSounds;
private float speed;
private GameObject player;
private AudioSource audioSource;
void Start()
{
audioSource = GetComponent<AudioSource>();
player = GameObject.FindWithTag("Player");
speed = Random.Range(0.5f, 3.0f);
audioSource.clip = spawnSounds[Random.Range(0,spawnSounds.Length)];
audioSource.Play();
}
// Update is called once per frame
@@ -32,11 +39,15 @@ public class EnemyScript : MonoBehaviour
if(other.gameObject.tag == "Bullet")
{
PlayerPrefs.SetInt("Score", PlayerPrefs.GetInt("Score")+1);
AudioSource.PlayClipAtPoint(
defeatSounds[Random.Range(0,defeatSounds.Length)], new Vector3(0, 0, 0));
Destroy(gameObject);
}
if(other.gameObject.tag == "Player")
{
AudioSource.PlayClipAtPoint(
defeatSounds[Random.Range(0,defeatSounds.Length)], new Vector3(0, 0, 0));
Destroy(gameObject);
}