feat: Allow hiding data inspector rows

This commit is contained in:
WerWolv
2023-11-18 17:23:15 +01:00
parent 37f9f5619c
commit 3b01dcf230
5 changed files with 82 additions and 16 deletions

View File

@@ -261,8 +261,8 @@ namespace ImGuiExt {
bool BitCheckbox(const char* label, bool* v);
bool DimmedButton(const char* label);
bool DimmedIconButton(const char *symbol, ImVec4 color, ImVec2 size_arg = ImVec2(0, 0));
bool DimmedButton(const char* label, ImVec2 size = ImVec2(0, 0));
bool DimmedIconButton(const char *symbol, ImVec4 color, ImVec2 size = ImVec2(0, 0));
bool DimmedIconToggle(const char *icon, bool *v);
void TextOverlay(const char *text, ImVec2 pos);