From 68b12ee34ba68427dcd2c6409c75cbab558fcbe4 Mon Sep 17 00:00:00 2001 From: minenice55 <43734252+minenice55@users.noreply.github.com> Date: Thu, 24 Mar 2022 13:17:49 -0400 Subject: [PATCH] Editor: disabled tempo change placing UNTESTED --- Assets/Scripts/LevelEditor/Timeline/TempoTimeline.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Assets/Scripts/LevelEditor/Timeline/TempoTimeline.cs b/Assets/Scripts/LevelEditor/Timeline/TempoTimeline.cs index 154b041c..0da76709 100644 --- a/Assets/Scripts/LevelEditor/Timeline/TempoTimeline.cs +++ b/Assets/Scripts/LevelEditor/Timeline/TempoTimeline.cs @@ -130,6 +130,10 @@ namespace HeavenStudio.Editor.Track private void AddTempoChange(bool create, Beatmap.TempoChange tempoChange_ = null) { + // TEMP: DISABLED UNTIL CRITICAL FIXES + if (create) + return; + GameObject tempoChange = Instantiate(RefTempoChange.gameObject, this.transform); tempoChange.transform.GetChild(0).GetComponent().color = EditorTheme.theme.properties.TempoLayerCol.Hex2RGB();