Added some alternative part indexes.

This commit is contained in:
Willem Cazander 2022-01-31 17:50:33 +01:00
parent 9793e70937
commit 8b6b4dbc3a
3 changed files with 57 additions and 35 deletions

View file

@ -84,19 +84,19 @@ public class BasePartRenderer extends ImGuiRendererMain {
}
ImGui.tableNextColumn();
if (part instanceof BasePartAlt2) {
ImGui.text(BasePartAlt2.class.cast(part).getAlt1Value());
ImGui.text(BasePartAlt2.class.cast(part).getAlt2Value());
} else {
ImGui.text("");
}
ImGui.tableNextColumn();
if (part instanceof BasePartAlt3) {
ImGui.text(BasePartAlt3.class.cast(part).getAlt1Value());
ImGui.text(BasePartAlt3.class.cast(part).getAlt3Value());
} else {
ImGui.text("");
}
ImGui.tableNextColumn();
if (part instanceof BasePartAlt4) {
ImGui.text(BasePartAlt4.class.cast(part).getAlt1Value());
ImGui.text(BasePartAlt4.class.cast(part).getAlt4Value());
} else {
ImGui.text("");
}