Added some alternative part indexes.
This commit is contained in:
parent
9793e70937
commit
8b6b4dbc3a
3 changed files with 57 additions and 35 deletions
|
|
@ -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("");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue