Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ocornut/imgui_club
Nice things to use along dear imgui
https://github.com/ocornut/imgui_club
Last synced: 4 days ago
JSON representation
Nice things to use along dear imgui
- Host: GitHub
- URL: https://github.com/ocornut/imgui_club
- Owner: ocornut
- License: mit
- Created: 2017-08-17T08:31:16.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T20:07:59.000Z (about 2 months ago)
- Last Synced: 2024-10-14T14:20:01.892Z (20 days ago)
- Language: C
- Homepage:
- Size: 104 KB
- Stars: 916
- Watchers: 36
- Forks: 106
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- AwesomeCppGameDev - imgui_club
README
# Index
Officially maintained small extensions for Dear ImGui:
- [Memory Editor](#imgui_memory_editor)
- [Multi-Context Compositor](#imgui_multicontext_compositor)
You also can find many useful third-party snippets here: https://github.com/ocornut/imgui/wiki/Useful-Extensions# imgui_memory_editor
https://github.com/ocornut/imgui_club/tree/main/imgui_memory_editor
Mini hexadecimal editor! Right-click for option menu.
Features: Keyboard controls. Read-only mode. Optional Ascii display. Optional HexII display. Goto address. Highlight range/function. Read/Write handlers.**Usage**
```cpp
static MemoryEditor mem_edit;
mem_edit.DrawWindow("Memory Editor", data, data_size);
```
![memory editor](https://raw.githubusercontent.com/wiki/ocornut/imgui_club/images/memory_editor_v19.gif)![memory editor](https://raw.githubusercontent.com/wiki/ocornut/imgui_club/images/memory_editor_v32.png)
# imgui_multicontext_compositor
https://github.com/ocornut/imgui_club/tree/main/imgui_multicontext_compositor
When using and displaying multiple contexts simultaneously (e.g. Update vs Rendering domains):
- Manage z-order of contexts
- Manage input routing
- Allow drag and drop between contexts![multi_context_compositor.gif](https://github.com/user-attachments/assets/220a9469-db15-419a-8f29-3e0bf7025c84)