feat: template now enables nav keyboard and gamepad by default, as well as docking

This commit is contained in:
Sara Gerretsen 2025-09-04 21:24:57 +02:00
parent 20c0973f50
commit 1e0a61eb59

View file

@ -12,6 +12,11 @@ void configure(AppConfig &config) {
}
void setup() {
ImGui::GetIO().ConfigFlags |= (
ImGuiConfigFlags_NavEnableKeyboard
| ImGuiConfigFlags_NavEnableGamepad
| ImGuiConfigFlags_DockingEnable
);
}
void loop() {