{"id":25277475,"url":"https://github.com/cstom4994/imgui_lua_inspector","last_synced_at":"2025-09-07T11:40:17.248Z","repository":{"id":233135180,"uuid":"786104874","full_name":"cstom4994/imgui_lua_inspector","owner":"cstom4994","description":"imgui lua runtime inspector and console","archived":false,"fork":false,"pushed_at":"2024-05-09T06:26:00.000Z","size":8772,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-12T16:55:20.153Z","etag":null,"topics":["gamedev","imgui","lua","runtime"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cstom4994.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-13T12:51:27.000Z","updated_at":"2024-09-10T16:19:19.000Z","dependencies_parsed_at":"2025-02-12T17:04:31.095Z","dependency_job_id":null,"html_url":"https://github.com/cstom4994/imgui_lua_inspector","commit_stats":null,"previous_names":["cstom4994/imgui_lua_inspector"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cstom4994%2Fimgui_lua_inspector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cstom4994%2Fimgui_lua_inspector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cstom4994%2Fimgui_lua_inspector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cstom4994%2Fimgui_lua_inspector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cstom4994","download_url":"https://codeload.github.com/cstom4994/imgui_lua_inspector/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247476030,"owners_count":20944979,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gamedev","imgui","lua","runtime"],"created_at":"2025-02-12T16:54:09.215Z","updated_at":"2025-04-06T11:28:52.714Z","avatar_url":"https://github.com/cstom4994.png","language":"C++","readme":"# ImGui Lua Inspector\n\nImGui tool for inspecting and modifying the Lua registry's value in real time which can embed in your game engine easily\n[imgui_lua_inspector](https://github.com/cstom4994/imgui_lua_inspector)\n\n## Usage\n```cpp\n// Just register luainspector functions to lua\nlua_register(L, \"__neko_luainspector_init\", neko::luainspector::luainspector_init);\nlua_register(L, \"__neko_luainspector_draw\", neko::luainspector::luainspector_draw);\nlua_register(L, \"__neko_luainspector_get\", neko::luainspector::luainspector_get);\n\n/*\n__neko_luainspector_init should be called when your game is initialized, it will return a luainspector userdata\n__neko_luainspector_draw should be called every frame (before ImGui::Render()), it needs to be called with a luainspector userdata\n__neko_luainspector_get is used to get the userdata of the only luainspector that exists in the lua registry\n*/\n```\n\n```lua\n\nfunction game_init()\n    inspector = __neko_luainspector_init()\nend\n\nfunction game_render()\n    __neko_luainspector_draw(inspector)\n    -- or __neko_luainspector_draw(__neko_luainspector_get())\n\n    -- ...\n    -- ImGui::Render() called\nend\n\n```\n\n## Demo\n\n![s1](demo.gif)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcstom4994%2Fimgui_lua_inspector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcstom4994%2Fimgui_lua_inspector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcstom4994%2Fimgui_lua_inspector/lists"}