Skip to content

Commit

Permalink
fixed logo on death screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Perdue committed Mar 14, 2022
1 parent e73969e commit a9dd307
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Characters/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ public void makePauseMenu()
scoreLabel.Offset = new Vector2(0, -10);
logo = new Picture();
logo.Texture = AssetManager.AttemptLoad<Texture2D>("logo.png");
logo.Anchor = UIAnchor.Top;
logo.Offset = new Vector2(0, 90);
logo.Anchor = UIAnchor.Center;
logo.Offset = new Vector2(0, -83);
logo.Scale = 0.3f;
restartButton = new RectangleButton();
restartButton.OnClick += restart;
Expand Down

0 comments on commit a9dd307

Please sign in to comment.