mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 19:55:09 +00:00
28 lines
605 B
C#
28 lines
605 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace RhythmHeavenMania.Util
|
||
|
{
|
||
|
public class Sound : MonoBehaviour
|
||
|
{
|
||
|
public AudioClip clip;
|
||
|
public float pitch;
|
||
|
|
||
|
private AudioSource audioSource;
|
||
|
|
||
|
private void Start()
|
||
|
{
|
||
|
audioSource = GetComponent<AudioSource>();
|
||
|
audioSource.PlayOneShot(clip);
|
||
|
StartCoroutine(play());
|
||
|
}
|
||
|
|
||
|
private IEnumerator play()
|
||
|
{
|
||
|
yield return new WaitForSeconds(clip.length);
|
||
|
Destroy(this.gameObject);
|
||
|
}
|
||
|
}
|
||
|
}
|