Disable framework overlay for explicit ImGui sample

Fixes #902
This commit is contained in:
Sascha Willems 2021-11-10 19:04:02 +01:00
parent dd24009991
commit 10427c626b

View file

@ -499,6 +499,8 @@ public:
camera.setPosition(glm::vec3(0.0f, 0.0f, -4.8f));
camera.setRotation(glm::vec3(4.5f, -380.0f, 0.0f));
camera.setPerspective(45.0f, (float)width / (float)height, 0.1f, 256.0f);
// Don't use the ImGui overlay of the base framework in this sample
settings.overlay = false;
}
~VulkanExample()