forked from mirror/DotRecast
added "Keep Itermediate Results" flag
This commit is contained in:
parent
9210eb58fe
commit
17c1c18372
|
@ -166,6 +166,10 @@ public class RcSettingsView : IRcView
|
||||||
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("Build All Tiles", ref settings.buildAll);
|
||||||
|
ImGui.NewLine();
|
||||||
|
|
||||||
ImGui.Text("Tiling");
|
ImGui.Text("Tiling");
|
||||||
ImGui.Separator();
|
ImGui.Separator();
|
||||||
ImGui.Checkbox("Enable", ref settings.tiled);
|
ImGui.Checkbox("Enable", ref settings.tiled);
|
||||||
|
|
|
@ -31,5 +31,8 @@
|
||||||
|
|
||||||
public bool tiled = false;
|
public bool tiled = false;
|
||||||
public int tileSize = 32;
|
public int tileSize = 32;
|
||||||
|
|
||||||
|
public bool keepInterResults = false;
|
||||||
|
public bool buildAll = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue