HeavenStudioPlus/Assets/Scripts/Util/MultiSound.cs

64 lines
1.7 KiB
C#
Raw Normal View History

2022-01-21 01:24:30 +00:00
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
namespace RhythmHeavenMania.Util
{
public class MultiSound : MonoBehaviour
{
private float startBeat;
private int index;
2022-02-03 03:58:08 +00:00
private bool game;
2022-01-21 01:24:30 +00:00
public List<Sound> sounds = new List<Sound>();
public class Sound
{
public string name { get; set; }
public float beat { get; set; }
public Sound(string name, float beat)
{
this.name = name;
this.beat = beat;
}
}
2022-02-03 03:58:08 +00:00
public static void Play(Sound[] snds, bool game = true)
2022-01-21 01:24:30 +00:00
{
List<Sound> sounds = snds.ToList();
GameObject gameObj = new GameObject();
MultiSound ms = gameObj.AddComponent<MultiSound>();
ms.sounds = sounds;
ms.startBeat = sounds[0].beat;
2022-02-03 03:58:08 +00:00
ms.game = game;
2022-01-21 01:24:30 +00:00
gameObj.name = "MultiSound";
GameManager.instance.SoundObjects.Add(gameObj);
}
private void Update()
{
float songPositionInBeats = Conductor.instance.songPositionInBeats;
for (int i = 0; i < sounds.Count; i++)
{
if (songPositionInBeats >= sounds[i].beat && index == i)
{
2022-02-03 03:58:08 +00:00
if (game)
Jukebox.PlayOneShotGame(sounds[i].name);
else
Jukebox.PlayOneShot(sounds[i].name);
2022-01-21 01:24:30 +00:00
index++;
}
}
if (songPositionInBeats >= (sounds[sounds.Count - 1].beat))
{
Destroy(this.gameObject);
}
}
}
}