Editor: Tempo Finder button tooltip

This commit is contained in:
Jenny Crowe 2022-02-28 01:38:43 -07:00
parent 646bb82c04
commit 9d7620feb3
2 changed files with 5 additions and 0 deletions

View File

@ -8862,6 +8862,7 @@ MonoBehaviour:
valB: 0
valC: 0
type: 0
type2: 0
ease: 0
colorA: {r: 0, g: 0, b: 0, a: 0}
colorB: {r: 0, g: 0, b: 0, a: 0}
@ -9137,6 +9138,7 @@ MonoBehaviour:
valB: 0
valC: 0
type: 0
type2: 0
ease: 0
colorA: {r: 0, g: 0, b: 0, a: 0}
colorB: {r: 0, g: 0, b: 0, a: 0}
@ -14152,6 +14154,7 @@ MonoBehaviour:
EditorSettingsBTN: {fileID: 3236232}
EditorThemeBTN: {fileID: 528192061}
FullScreenBTN: {fileID: 151246938}
TempoFinderBTN: {fileID: 1478799966}
discordDuringTesting: 0
canSelect: 1
--- !u!114 &1423699438

View File

@ -48,6 +48,7 @@ namespace RhythmHeavenMania.Editor
[SerializeField] private Button EditorSettingsBTN;
[SerializeField] private Button EditorThemeBTN;
[SerializeField] private Button FullScreenBTN;
[SerializeField] private Button TempoFinderBTN;
[Header("Properties")]
private bool changedMusic = false;
@ -93,6 +94,7 @@ namespace RhythmHeavenMania.Editor
Tooltip.AddTooltip(EditorSettingsBTN.gameObject, "Editor Settings <color=#adadad>[Ctrl+Shift+O]</color>");
Tooltip.AddTooltip(EditorThemeBTN.gameObject, "Editor Theme");
Tooltip.AddTooltip(FullScreenBTN.gameObject, "Preview <color=#adadad>[Tab]</color>");
Tooltip.AddTooltip(TempoFinderBTN.gameObject, "Tempo Finder");
UpdateEditorStatus(true);
}