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

Added settings option for configurable barrier placement distance

This commit is contained in:
Rich Dunne 2020-08-30 09:55:38 -06:00
parent 934e73d5c1
commit 646498bbc5
2 changed files with 7 additions and 3 deletions

View file

@ -10,6 +10,8 @@ namespace SceneManager
public static UIMenuCheckboxItem debugGraphics = new UIMenuCheckboxItem("Enable 3D Waypoints", false),
hints = new UIMenuCheckboxItem("Enable Hints", true); // Refactor this to be true/false based off the ini
public static UIMenuListScrollerItem<SpeedUnitsOfMeasure> speedUnits = new UIMenuListScrollerItem<SpeedUnitsOfMeasure>("Speed Unit of Measure", "", new[] { SpeedUnitsOfMeasure.MPH, SpeedUnitsOfMeasure.KPH });
public static UIMenuNumericScrollerItem<int> barrierPlacementDistance = new UIMenuNumericScrollerItem<int>("Barrier Placement Distance", "How far away you can place a barrier (in meters)", 1, 30, 1);
public enum SpeedUnitsOfMeasure
{
MPH,
@ -28,6 +30,8 @@ namespace SceneManager
settingsMenu.AddItem(debugGraphics);
settingsMenu.AddItem(hints);
settingsMenu.AddItem(speedUnits);
settingsMenu.AddItem(barrierPlacementDistance);
barrierPlacementDistance.Index = 14;
settingsMenu.OnCheckboxChange += SettingsMenu_OnCheckboxChange;
settingsMenu.OnScrollerChange += SettingsMenu_OnScrollerChange;
@ -47,7 +51,7 @@ namespace SceneManager
});
}
DebugGraphics.DrawSphereOnPlayer(debugGraphics);
DebugGraphics.Draw3DWaypointOnPlayer();
}
}