1
Fork 0
mirror of https://github.com/thegeneralist01/Scene-Manager-DevRepo synced 2026-01-11 15:40:29 +01:00

Changed foreground color of menu options user can select

This commit is contained in:
Rich Dunne 2020-08-24 07:07:32 -06:00
parent 5e73f89792
commit c60fc5c032
3 changed files with 16 additions and 0 deletions

View file

@ -22,7 +22,9 @@ namespace SceneManager
{
editPathMenu.AddItem(togglePath = new UIMenuCheckboxItem("Disable Path", false));
editPathMenu.AddItem(editPathWaypoints = new UIMenuItem("Edit Waypoints"));
editPathWaypoints.ForeColor = Color.Gold;
editPathMenu.AddItem(deletePath = new UIMenuItem("Delete Path"));
deletePath.ForeColor = Color.Gold;
editPathMenu.RefreshIndex();
editPathMenu.OnItemSelect += EditPath_OnItemSelected;