add comment "Tick 'Keep Itermediate Results'"

This commit is contained in:
ikpil 2024-04-16 23:24:48 +09:00
parent 17c1c18372
commit 97ffaf8700
1 changed files with 8 additions and 2 deletions

View File

@ -165,7 +165,7 @@ public class RcSettingsView : IRcView
ImGui.SliderFloat("Sample Distance", ref settings.detailSampleDist, 0f, 16f, "%.1f");
ImGui.SliderFloat("Max Sample Error", ref settings.detailSampleMaxError, 0f, 16f, "%.1f");
ImGui.NewLine();
ImGui.Checkbox("Keep Itermediate Results", ref settings.keepInterResults);
ImGui.Checkbox("Build All Tiles", ref settings.buildAll);
ImGui.NewLine();
@ -232,6 +232,12 @@ public class RcSettingsView : IRcView
DrawMode.Values.ForEach(dm => { ImGui.RadioButton(dm.Text, ref drawMode, dm.Idx); });
ImGui.NewLine();
ImGui.Separator();
ImGui.Text("Tick 'Keep Itermediate Results'");
ImGui.Text("rebuild some tiles to see");
ImGui.Text("more debug mode options.");
ImGui.NewLine();
ImGui.End();
}
@ -266,4 +272,4 @@ public class RcSettingsView : IRcView
{
this.maxPolys = maxPolys;
}
}
}