Skip to content

Commit

Permalink
Add more ImGui features
Browse files Browse the repository at this point in the history
  • Loading branch information
HerrNamenlos123 committed Aug 14, 2024
1 parent 383a508 commit 710bc29
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/src/imguilua.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,7 @@ void ImGuiLua::DeclareLuaBridge(lua_State* L)
ns.addFunction("PushIDStr",
[](const std::string& id) { ImGui::PushID(id.c_str()); });
ns.addFunction("PopID", &ImGui::PopID);
ns.addFunction("Separator", &ImGui::Separator);
ns.addFunction("ShowDemoWindow", []() { ImGui::ShowDemoWindow(); });
ns.addFunction("BeginCombo",
[](const std::string& name, const std::string& currentItem) {
Expand Down

0 comments on commit 710bc29

Please sign in to comment.