diff --git a/src/DotRecast.Recast.Demo/UI/RcSettingsView.cs b/src/DotRecast.Recast.Demo/UI/RcSettingsView.cs index 8ecc8c8..5ca0de5 100644 --- a/src/DotRecast.Recast.Demo/UI/RcSettingsView.cs +++ b/src/DotRecast.Recast.Demo/UI/RcSettingsView.cs @@ -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; } -} +} \ No newline at end of file