added plots and new style

This commit is contained in:
2026-02-25 14:11:04 +03:00
parent 0a57622f67
commit b530ae06d9
25 changed files with 24897 additions and 100 deletions

View File

@@ -19,7 +19,7 @@ namespace example
void ui_layer::render()
{
VE_PUSH_FONT(REGULAR, 20);
VE_PUSH_FONT(REGULAR, 30);
if (ImGui::BeginMainMenuBar())
{
if (ImGui::BeginMenu("File"))
@@ -59,9 +59,28 @@ namespace example
hack::log()(r);
}
ImPlot::ShowDemoWindow();
ImPlot3D::ShowDemoWindow();
ImGui::ShowDemoWindow();
ImGui::TextDisabled("asdfasdf");
if (ImGui::BeginTable("table1", 3))
{
for (int row = 0; row < 4; row++)
{
ImGui::TableNextRow();
for (int column = 0; column < 3; column++)
{
ImGui::TableSetColumnIndex(column);
ImGui::Text("Row %d Column %d", row, column);
}
}
ImGui::EndTable();
}
VE_POP_FONT();
ImGui::End();
}