Tempo change? (Don't update very buggy)

This commit is contained in:
Braedon
2022-01-27 21:50:57 -05:00
parent 8f268f4d60
commit 9185249dd1
36 changed files with 2630 additions and 39 deletions

View File

@ -8,6 +8,8 @@ using Newtonsoft.Json;
using TMPro;
using Starpelly;
using RhythmHeavenMania.Editor.Track;
namespace RhythmHeavenMania.Editor
{
public class Editor : MonoBehaviour
@ -125,7 +127,10 @@ namespace RhythmHeavenMania.Editor
for (int i = 0; i < selectedEvents.Count; i++)
{
result.Add(selectedEvents[i]);
if (selectedEvents[i].isCreating == false)
{
result.Add(selectedEvents[i]);
}
selectedEvents[i].OnUp();
}
CommandManager.instance.Execute(new Commands.Move(result));