Description:
Add to title screen.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -858,7 +858,7 | |||||
|
858 |
|
858 | ||
|
859 | Vector2 middle_dimensions = largeMonoFont.MeasureString("Isometric Park"); |
|
859 | Vector2 middle_dimensions = largeMonoFont.MeasureString("Isometric Park"); |
|
860 | float middle_start = (int)((FNAGame.width / 2) - (middle_dimensions.X / 2)); |
|
860 | float middle_start = (int)((FNAGame.width / 2) - (middle_dimensions.X / 2)); |
|
861 | ImGui.SetNextWindowPos(new Num.Vector2(FNAGame.width/2, 200)); |
|
861 | ImGui.SetNextWindowPos(new Num.Vector2(((FNAGame.width/2) - 40), 200)); |
|
862 | MainMenu.Render(debugWindow.monoFont, imGuiWindowBridgeEngine); |
|
862 | MainMenu.Render(debugWindow.monoFont, imGuiWindowBridgeEngine); |
|
863 |
|
863 | ||
|
864 | batch.DrawString(largeMonoFont, "Isometric Park", |
|
864 | batch.DrawString(largeMonoFont, "Isometric Park", |
@@ -875,6 +875,14 | |||||
|
875 | new Vector2(0, FNAGame.height-version_dimensions.Y), |
|
875 | new Vector2(0, FNAGame.height-version_dimensions.Y), |
|
876 | Color.White, 0.0f, Vector2.Zero, |
|
876 | Color.White, 0.0f, Vector2.Zero, |
|
877 | 1.0f, SpriteEffects.None, 0.51f); |
|
877 | 1.0f, SpriteEffects.None, 0.51f); |
|
|
878 | |||
|
|
879 | Vector2 name_dimensions = monoFont.MeasureString("by actuallyalys<3"); | ||
|
|
880 | float name_start = (int)(FNAGame.width / 2) - (name_dimensions.X / 2); | ||
|
|
881 | |||
|
|
882 | batch.DrawString(monoFont, "by actuallyalys <3", | ||
|
|
883 | new Vector2(name_start, 50+middle_dimensions.Y), | ||
|
|
884 | Color.White, 0.0f, Vector2.Zero, | ||
|
|
885 | 1.0f, SpriteEffects.None, 0.51f); | ||
|
878 | batch.End(); |
|
886 | batch.End(); |
|
879 | } |
|
887 | } |
|
880 | #endregion |
|
888 | #endregion |
You need to be logged in to leave comments.
Login now