Editor: disabled tempo change placing

UNTESTED
This commit is contained in:
minenice55 2022-03-24 13:17:49 -04:00
parent 7ff421c497
commit 68b12ee34b
1 changed files with 4 additions and 0 deletions

View File

@ -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<Image>().color = EditorTheme.theme.properties.TempoLayerCol.Hex2RGB();