We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 217434a commit 49a4090Copy full SHA for 49a4090
Assets.Scripts.UI.SaveLoad/SaveLoadQSave.cs
@@ -20,13 +20,18 @@ public void EnableEntry(SaveEntry entry)
20
SaveButton.isEnabled = false;
21
LoadButton.isEnabled = true;
22
BottomLabel.text = entry.Time.ToString("MMM dd, yyyy h:mm tt");
23
+ // Save button is never useful so hide it
24
+ SaveButton.gameObject.SetActive(false);
25
}
26
27
private void DisableButton()
28
{
29
+
30
31
LoadButton.isEnabled = false;
32
BottomLabel.text = string.Empty;
33
34
35
36
37
public void LoadSlot(int slotnum)
0 commit comments