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
{{ message }}
This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
Currently a system exists in codegen to generate setters for a selected whitelist of properties in ImGui classes. One notable property missing is ImGuiIO.configFlags, and modification of ImGuiStyle's properties is probably another good use case, but the question comes to mind: At what point might it be better to tweak the generation to make properties mutable based on whether they're const rather than explicitly following a whitelist?
The text was updated successfully, but these errors were encountered:
Not many of them are const and I don't know if some properties are only meant to be mutable internally. So I settled with an on-demand whitelist and moved on.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently a system exists in codegen to generate setters for a selected whitelist of properties in ImGui classes. One notable property missing is
ImGuiIO.configFlags
, and modification ofImGuiStyle
's properties is probably another good use case, but the question comes to mind: At what point might it be better to tweak the generation to make properties mutable based on whether they'reconst
rather than explicitly following a whitelist?The text was updated successfully, but these errors were encountered: