mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-06 16:05:53 +00:00
Update credits
This commit is contained in:
parent
39f4c3e114
commit
598cca3040
@ -237,6 +237,9 @@ static void RenderEntityColumns(const ImGuiEntityEntry& entry) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void ImGuiConsole::ShowInspectWindow(bool* isOpen) {
|
void ImGuiConsole::ShowInspectWindow(bool* isOpen) {
|
||||||
|
float initialWindowSize = 400.f * ImGui::GetIO().DisplayFramebufferScale.x;
|
||||||
|
ImGui::SetNextWindowSize(ImVec2{initialWindowSize, initialWindowSize * 1.5f}, ImGuiCond_FirstUseEver);
|
||||||
|
|
||||||
if (ImGui::Begin("Inspect", isOpen)) {
|
if (ImGui::Begin("Inspect", isOpen)) {
|
||||||
CObjectList& list = g_StateManager->GetAllObjectList();
|
CObjectList& list = g_StateManager->GetAllObjectList();
|
||||||
ImGui::Text("Objects: %d / 1024", list.size());
|
ImGui::Text("Objects: %d / 1024", list.size());
|
||||||
@ -384,10 +387,27 @@ void ImGuiConsole::ShowAboutWindow(bool canClose, std::string_view errorString)
|
|||||||
ImGui::Dummy(padding);
|
ImGui::Dummy(padding);
|
||||||
}
|
}
|
||||||
ImGuiTextCenter("2015-2021");
|
ImGuiTextCenter("2015-2021");
|
||||||
ImGuiTextCenter("Phillip Stephens (Antidote)");
|
ImGui::BeginGroup();
|
||||||
ImGuiTextCenter("Jack Andersen (jackoalan)");
|
ImGui::PushStyleColor(ImGuiCol_Text, IM_COL32(255, 255, 255, 200));
|
||||||
ImGuiTextCenter("Luke Street (encounter)");
|
ImGuiStringViewText("Development & Research");
|
||||||
ImGuiTextCenter("Metaforce contributors");
|
ImGui::PopStyleColor();
|
||||||
|
ImGuiStringViewText("Phillip Stephens (Antidote)");
|
||||||
|
ImGuiStringViewText("Jack Andersen (jackoalan)");
|
||||||
|
ImGuiStringViewText("Luke Street (encounter)");
|
||||||
|
ImGuiStringViewText("Lioncache");
|
||||||
|
ImGui::EndGroup();
|
||||||
|
ImGui::SameLine();
|
||||||
|
ImGui::BeginGroup();
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_Text, IM_COL32(255, 255, 255, 200));
|
||||||
|
ImGuiStringViewText("Testing");
|
||||||
|
ImGui::PopStyleColor();
|
||||||
|
ImGuiStringViewText("Tom Lube");
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_Text, IM_COL32(255, 255, 255, 200));
|
||||||
|
ImGuiStringViewText("Contributions");
|
||||||
|
ImGui::PopStyleColor();
|
||||||
|
ImGuiStringViewText("Darkszero (Profiling)");
|
||||||
|
ImGuiStringViewText("shio (Flamethrower)");
|
||||||
|
ImGui::EndGroup();
|
||||||
ImGui::Dummy(padding);
|
ImGui::Dummy(padding);
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
if (ImGui::BeginTable("Version Info", 2, ImGuiTableFlags_BordersInnerV)) {
|
if (ImGui::BeginTable("Version Info", 2, ImGuiTableFlags_BordersInnerV)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user