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

Added hint message if player tries to edit waypoints while 3D waypoints are disabled

This commit is contained in:
Rich Dunne 2020-10-25 08:37:35 -06:00
parent 1321b0b91d
commit 2505d2899c

View file

@ -35,6 +35,10 @@ namespace SceneManager
private static void EditPathWaypoints()
{
if (!SettingsMenu.threeDWaypoints.Checked)
{
Hints.Display($"~o~Scene Manager ~y~[Hint]\n~w~You have 3D waypoints disabled in your settings. It's recommended to enable 3D waypoints while working with waypoints.");
}
EditWaypointMenu.BuildEditWaypointMenu();
}