You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I want to make a debug overlay with lots of data (such as for my UI system), it's natural to put chunks of data in sections to manage complexity. However, debug sections are expanded by default and can only be collapsed manually one at a time, so making all that data useful to the user is challenging
Describe the solution you'd like
dbg_section should have a parameter to control whether it is expanded or not. Ideally this can either be true, false, or a ref to a boolean variable (this would allow the user to add their own buttons to 'Collapse All', for example).
Describe alternatives you've considered
the only alternative I can think of is to mimic our own sections with buttons (which then involves manually implementing fake section expand/collapse logic)
Additional context
No response
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem?
If I want to make a debug overlay with lots of data (such as for my UI system), it's natural to put chunks of data in sections to manage complexity. However, debug sections are expanded by default and can only be collapsed manually one at a time, so making all that data useful to the user is challenging
Describe the solution you'd like
dbg_section should have a parameter to control whether it is expanded or not. Ideally this can either be
true
,false
, or aref
to a boolean variable (this would allow the user to add their own buttons to 'Collapse All', for example).Describe alternatives you've considered
the only alternative I can think of is to mimic our own sections with buttons (which then involves manually implementing fake section expand/collapse logic)
Additional context
No response
The text was updated successfully, but these errors were encountered: