forked from mirror/DotRecast
add comment "Tick 'Keep Itermediate Results'"
This commit is contained in:
parent
17c1c18372
commit
97ffaf8700
|
@ -165,7 +165,7 @@ public class RcSettingsView : IRcView
|
||||||
ImGui.SliderFloat("Sample Distance", ref settings.detailSampleDist, 0f, 16f, "%.1f");
|
ImGui.SliderFloat("Sample Distance", ref settings.detailSampleDist, 0f, 16f, "%.1f");
|
||||||
ImGui.SliderFloat("Max Sample Error", ref settings.detailSampleMaxError, 0f, 16f, "%.1f");
|
ImGui.SliderFloat("Max Sample Error", ref settings.detailSampleMaxError, 0f, 16f, "%.1f");
|
||||||
ImGui.NewLine();
|
ImGui.NewLine();
|
||||||
|
|
||||||
ImGui.Checkbox("Keep Itermediate Results", ref settings.keepInterResults);
|
ImGui.Checkbox("Keep Itermediate Results", ref settings.keepInterResults);
|
||||||
ImGui.Checkbox("Build All Tiles", ref settings.buildAll);
|
ImGui.Checkbox("Build All Tiles", ref settings.buildAll);
|
||||||
ImGui.NewLine();
|
ImGui.NewLine();
|
||||||
|
@ -232,6 +232,12 @@ public class RcSettingsView : IRcView
|
||||||
DrawMode.Values.ForEach(dm => { ImGui.RadioButton(dm.Text, ref drawMode, dm.Idx); });
|
DrawMode.Values.ForEach(dm => { ImGui.RadioButton(dm.Text, ref drawMode, dm.Idx); });
|
||||||
ImGui.NewLine();
|
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();
|
ImGui.End();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -266,4 +272,4 @@ public class RcSettingsView : IRcView
|
||||||
{
|
{
|
||||||
this.maxPolys = maxPolys;
|
this.maxPolys = maxPolys;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue