v1.0.0.14: Movement Trail (Carbonite-style) - red dots show where you've been

Made-with: Cursor
This commit is contained in:
2026-03-01 00:57:18 -05:00
parent 542da3a71b
commit b4638eb60b
12 changed files with 195 additions and 2 deletions
+12
View File
@@ -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);