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

Menu description now shows path currently being edited

This commit is contained in:
Rich Dunne 2021-05-23 06:42:04 -06:00
parent 8e5821006b
commit 84223508cb

View file

@ -101,7 +101,7 @@ namespace SceneManager
{
var scrollerItems = new List<UIMenuScrollerItem> { };
GameFiber.StartNew(() => UserInput.InitializeMenuMouseControl(menu, scrollerItems), "RNUI Mouse Input Fiber");
//CurrentPath = PathManager.Paths[PathMainMenu.EditPath.Index];
Menu.SubtitleText = $"Currently editing path {CurrentPath.Name}";
ChangePathName.Description = $"Change the path name from ~b~{CurrentPath.Name} ~w~to something else.";
}
}