v1.0.0.14: Movement Trail (Carbonite-style) - red dots show where you've been
Made-with: Cursor
This commit is contained in:
@@ -80,6 +80,18 @@ public class MapFunctionsTab : ITabItem
|
||||
configChanged |= ImGui.Checkbox("Center on Quest", ref System.SystemConfig.CenterOnQuest);
|
||||
}
|
||||
|
||||
ImGuiTweaks.Header("Movement Trail (Carbonite-style)");
|
||||
using (ImRaii.PushIndent()) {
|
||||
configChanged |= ImGui.Checkbox("Show Movement Trail", ref System.SystemConfig.ShowMovementTrail);
|
||||
ImGui.TextDisabled("Draw a trail of red dots showing where you've been on the map.");
|
||||
if (System.SystemConfig.ShowMovementTrail) {
|
||||
configChanged |= ImGui.SliderFloat("Min Distance (world units)", ref System.SystemConfig.MovementTrailMinDistance, 0.5f, 10f);
|
||||
configChanged |= ImGui.SliderFloat("Fade Time (seconds)", ref System.SystemConfig.MovementTrailFadeTimeSeconds, 10f, 300f);
|
||||
configChanged |= ImGui.SliderInt("Max Points", ref System.SystemConfig.MovementTrailMaxPoints, 20, 500);
|
||||
}
|
||||
ImGuiHelpers.ScaledDummy(5.0f);
|
||||
}
|
||||
|
||||
ImGuiTweaks.Header("Misc Options");
|
||||
using (ImRaii.PushIndent()) {
|
||||
configChanged |= ImGui.Checkbox("Show Misc Tooltips", ref System.SystemConfig.ShowMiscTooltips);
|
||||
|
||||
Reference in New Issue
Block a user