Skip to content

Commit

Permalink
Added Mention of the Discord to the Game Mode Menu
Browse files Browse the repository at this point in the history
  • Loading branch information
ToboterXP committed Aug 21, 2022
1 parent a1fbd79 commit fe18f6f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion SecondQuestModeMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public override void OnEnterMainMenu(MenuPage modeMenu)
var expansion1Label = new MenuLabel(SteelSoulSelector, "Including Expansion 1 - Dream of the Fallen", MenuLabel.Style.Body);

var mapWarningLabel = new MenuLabel(SteelSoulSelector, "No map included - make one yourself or venture forth at your own risk", MenuLabel.Style.Body);
var discordLabel = new MenuLabel(SteelSoulSelector, "Join the Discord if you need help!", MenuLabel.Style.Body);

var startButton = new BigButton(SteelSoulSelector, "Start", "");
startButton.OnClick += StartGame;
Expand All @@ -53,12 +54,14 @@ public override void OnEnterMainMenu(MenuPage modeMenu)
expansion1Label,
steelSoulToggle,
mapWarningLabel,
discordLabel,
startButton
});

expansion1Label.Translate(new UnityEngine.Vector2(400, 0));
mapWarningLabel.Translate(new UnityEngine.Vector2(250, 0));
startButton.Translate(new UnityEngine.Vector2(-91, 0));
discordLabel.Translate(new UnityEngine.Vector2(480, 50));
startButton.Translate(new UnityEngine.Vector2(-91, 75));
}

/// <summary>
Expand Down

0 comments on commit fe18f6f

Please sign in to comment.