Skip to content

Commit

Permalink
Removed manual button due to not working in build
Browse files Browse the repository at this point in the history
  • Loading branch information
The64thGamer committed Dec 9, 2023
1 parent bc95403 commit 184c887
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion Assets/Scripts/MainMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ void OnEnable()
//Main Menu
document.rootVisualElement.Q<Button>("LoadWorlds").clicked += () => SwitchMenu(1);
document.rootVisualElement.Q<Button>("Settings").clicked += () => SwitchMenu(2);
document.rootVisualElement.Q<Button>("Manual").clicked += () => Process.Start("explorer.exe", (Application.dataPath + "/StreamingAssets/").Replace(@"/", @"\"));
document.rootVisualElement.Q<Button>("Exit").clicked += () => Application.Quit();


Expand Down
1 change: 0 additions & 1 deletion Assets/UI/UI Documents/Title Screen.uxml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<ui:VisualElement name="VisualElement" style="flex-grow: 0; justify-content: flex-start; align-items: auto;">
<ui:Button text="Load World" display-tooltip-when-elided="true" name="LoadWorlds" class="titlescreenbuttons" />
<ui:Button text="Settings" display-tooltip-when-elided="true" name="Settings" class="titlescreenbuttons" style="display: flex;" />
<ui:Button text="Manual" display-tooltip-when-elided="true" name="Manual" class="titlescreenbuttons" style="display: flex;" />
<ui:Button text="Exit" display-tooltip-when-elided="true" name="Exit" class="titlescreenbuttons" />
</ui:VisualElement>
<ui:VisualElement style="flex-grow: 1;" />
Expand Down

0 comments on commit 184c887

Please sign in to comment.